Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
$ git merge <OTHER-BRANCH>

How do I view commits on the current branch but exclude ones on the master branch?

Code Block
$ git log --graph --pretty=oneline --first-parent --abbrev-commit master..HEAD

Commits

How do I make a commit?

...