What does cloning a GitHub repository mean?

后端 未结 6 511
自闭症患者
自闭症患者 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:56

    To clone a repository means to duplicate and download everything in the repository.

    You are on a Mac, so launch Terminal, create a folder and type this command:

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

    It will duplicate and download the entire repository.

提交回复
热议问题