What does cloning a GitHub repository mean?

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

    Cloning a repository means that you're downloading a copy of the source code from source control. To use the iOS SDK you have to download the code from GitHub (ie- clone the iOS SDK repository).

    Type

    git clone git://github.com/facebook/facebook-ios-sdk.git [path to where you want to save sdk]
    

    from a shell / command prompt.

提交回复
热议问题