GIT: visualize branches and commits

06
December, 2022

See list of commits, first one on top:

git log

 

See all branches, with last commit on top of the list:

git branch -v

 

See your commits visualized directly in the Terminal:

# see all commits on the current branch
git log --graph

# see all commits on all branches
git log --graph --all