InterviewSolution
Saved Bookmarks
| 1. |
What is a git branch? |
|
Answer» Branches can be thought of as a timeline with commits. By default, the master branch is the main, primary branch that we usually work with. HEAD is a pointer to the last commit on the CURRENT branch. REMOTE is simply a refine, or a pointer, to a related repository somewhere that's not local and that could be within local network or ENTERPRISE network or somewhere out on the internet. Some examples of places that might be hosting remote REPOSITORIES would include GitHub, Gitlab, Bitbucket etc. |
|