Log

git log // show logs, use spacebar key to navigate huge list
git log --oneline ( commit hash and message only )

// --all -> display log of all branches and subbranches
git log --online --decorate --graph --all

// Display logs of the branch you are in
git log --online --decorate --graph

// Display logs of particular folder only
git log css

// Search Log by commit text
git log --grep="quick-feature"

Last updated

Was this helpful?