|
|
|
|
|
by kmacleod
920 days ago
|
|
git log <base-branch>..<branch>
I often need the count of commits, usually for build IDs, git rev-list --count <branch> ^<base-branch>
I usually use gitk for visualizing branch commits. CLI equivalent is git log --graph --oneline --all
|
|