This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# list all commits for a given file which includes cases where the file has been renamed. | |
git log --follow -- filename | |
# log with a decorated graph | |
git log --graph --abbrev-commit --decorate --date=relative --all | |
# short status on branch | |
git status --short --branch | |
# see log with diffs |