InterviewSolution
Saved Bookmarks
| 1. |
What is Git fork? What is the difference between fork, branch and clone? |
Answer»
A branch is a way to handle the changes within a SINGLE repo to eventually integrate them with the rest of the code. A branch exists within a repository only. Conceptually, it represents a thread of development which is needed to manage development/maintenance. The owner of the main repository gets a notification on their newsfeed when you fork their repository, however, it’s impossible to track if you clone / download their repository. However, note that you won’t be able to submit Pull Request(s) with a download as there are no dotfiles |
|