5
Q:

fork in github

GitHub fork
Featured snippet from the web
A fork is a copy of a repository. Forking a repository allows you to freely experiment with changes without affecting the original project. Most commonly, forks are used to either propose changes to someone else's project or to use someone else's project as a starting point for your own idea.
3
Creating a “fork” is producing a personal copy of someone else's project. 
Forks act as a sort of bridge between the original repository and your 
personal copy. You can submit Pull Requests to help make other people's 
projects better by offering your changes up to the original project.
1
$ git clone https://hostname/YOUR-USERNAME/Spoon-Knife
0
$ git remote -v
> origin  https://hostname/YOUR_USERNAME/YOUR_FORK.git (fetch)
> origin  https://hostname/YOUR_USERNAME/YOUR_FORK.git (push)
0
$ git clone https://hostname/YOUR-USERNAME/Spoon-Knife
> Cloning into `Spoon-Knife`...
> remote: Counting objects: 10, done.
> remote: Compressing objects: 100% (8/8), done.
> remove: Total 10 (delta 1), reused 10 (delta 1)
> Unpacking objects: 100% (10/10), done.
0

New to Communities?

Join the community