Version Control with Git
Rate it:
Read between July 20 - July 29, 2018
18%
Flag icon
The --interactive option to either git add or git commit can be a useful way to explore which files you would like to stage for a commit.
20%
Flag icon
the exclusion pattern is somehow specific to your one repository and should not (or might not) be applicable to anyone else’s clone of your repository, the pattern should instead go into the .git/info/exclude file, because it is not propagated during clone operations. Its pattern format and treatment is the same as .gitignore files.
25%
Flag icon
There is no permanent record of branch start points, but Git can algorithmically determine them using the git merge-base command.
George Wyner
This is presumably because there is a pointer to parent, but not child