What is a Git Revision Expression?

git needs to be able to identify a commit during a number of common operations https://git-scm.com/docs/git-rev-parse There are a number of ways to identify a commit. You could use a branch, tag, commit sha1, or expressions. For example: git log HEAD HEAD eventually resolves to a specific commit, and you will be given the log … Read more