What does cloning a GitHub repository mean?

后端 未结 6 523
自闭症患者
自闭症患者 2021-02-01 05:04

I am trying to integrate Facebook with my app. I read this on developers.facebook.com:

  1. Install XCode
  2. Install Git
  3. Clone the G
6条回答
  •  面向向阳花
    2021-02-01 05:52

    clone the repo

    Cloning = means copying

    Repo = is short form of Repository which is the complete files of the project

    Create a folder, Open terminal and take the path into that folder where you want to save the repo, and then run this command

    git clone git://github.com/facebook/facebook-ios-sdk.git
    

    This command will download all the files to that folder

    Welcome in Advance

提交回复
热议问题