What does cloning a GitHub repository mean?

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

    Cloning a git repository means that you create a local copy of the code provided by developer. You can simply do it with a command line:

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

    and you'll have the code in the facebook-ios-sdk directory.

提交回复
热议问题