I use this:
git log --pretty=format:\"%h %ad [%an] %s%d\" --graph --date=short
--all --date-order
I added an alias to my global .gitconfig
[alias]
hist = log --pretty=format:\"%h %ad [%an] %s%d\" --graph --date=short --all --date-order
and can cause a simple git hist
It makes a very readable change tree with short commits of hashing, author, date, branches, HEAD, etc. on one line
source
share