DEV Community

Discussion on: Essential git commands every developer should know

Collapse
 
leomeloxp profile image
Leo Melo

git log --graph if you want to see the classic git branch timeline view.

git log takes has a huge number of options, I normally use it with:

git log --color --oneline --decorate=no --graph
Enter fullscreen mode Exit fullscreen mode

Optionally I also passing --all in case I want to see all branches.

Collapse
 
virup profile image
Viru • Edited