0 votes
in Git Slack Integration by

What is a clone in GitHub?

1 Answer

0 votes
by

Cloning a Git repository means we can create a local copy of the code provided by the developer. You can simply do it with a command line: git clone git://github.com/facebook/facebook-ios-sdk.git . and we can have the code in the facebook-ios-sdk directory.

...