What does cloning a GitHub repository mean?

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

    Cloning a git repository is basically downloading a code base to your own machine, so you can use, edit... this code base.

    For doing it is as easy as creating a folder where you want to store this code, and then from the terminal execute from this folder:

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

提交回复
热议问题