• On its own, git diff compares the working directory to the staged version of the file.
  • git diff --staged compares the staged version to the most recent commited version.
  • git diff HEAD combines the changes in your working and staged versions of the file, and compares them to the version of the file designated as HEAD (most often, the most recent commit).
  • git diff --color-words displays a word-by-word comparison rather than a line-by-line comparison, helpful for small changes.

Log

Viewing Project History

  • git log --oneline shows a smaller version of the log.
  • git log --oneline --graph shows a graph of the changes along with the one-line log.
  • git log --oneline --graph --decorate includes information about the branches and the head.
  • git log --oneline --graph --decorate --all also includes unmerged branches.
  • git log --stat tells you which files were included in each commit.
  • shows the actual changes that were made in each commit as diffs
  • git revert <commit_hash> to revert your last commit
  • git commit -amend to fix the last commit’s message or add more files to that commit.
  • git checkout --<filename> is the syntax. The -- lets Git know you’re talking about a file. This will revert the file to the version found in the last commit.

The three modes for git reset are: --soft, --mixed, and --hard.

  • git revert reverts a specific commit. git reset resets git to a specific commit.
  • resets git to a specific commit, and puts the commits you’re resetting into the staging area where they can be easily re-committed.
  • git reset --mixed <to_commit> resets git to a specific commit, and puts the commits you’re resetting into the working directory so you can edit them directly.
  • git reset --hard <to_commit> resets git to a specific commit, and deletes the commits you’re resetting.
TIP

Keywords for closing issues

The following keywords will close an issue via commit message:

  • close
  • closes
  • closed
  • fix
  • fixes
  • fixed
  • resolve
  • resolves
  • resolved
  • You can create aliases in git that let you call on the short alias instead of writing out a full long command.
  • You do this by setting a global alias using git config.
  • git config --global alias.lol "log --oneline --graph --decorate --all" would let you type git lol instead of the entire log command with all its options.
  • git config --global alias.co "commit -m" would let you write git co "Commit Message" to quickly commit with a message attached.

Remote repositories

  • git merge upstream/master