Last active
December 15, 2015 09:49
-
-
Save Ikke/5240907 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git-feature-branch :: (topic) » git log --all --decorate --graph --oneline ~/tmp/git-feature-branch | |
* 420737a (HEAD, topic) B4 | |
* d3fe9b6 B3 | |
|\ | |
* | 046de8c B2 | |
* | fc175ec B1 | |
| | * 2f01b7a (master) A3 | |
| |/ | |
| * 926464b A2 | |
|/ | |
* fdba149 A1 | |
git-feature-branch :: (topic) » git log --oneline master..topic ~/tmp/git-feature-branch | |
420737a B4 | |
d3fe9b6 B3 | |
046de8c B2 | |
fc175ec B1 | |
git-feature-branch :: (topic) » git log --max-parents=1 --oneline master..topic ~/tmp/git-feature-branch | |
420737a B4 | |
046de8c B2 | |
fc175ec B1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment