Skip to content

Instantly share code, notes, and snippets.

@Ikke
Last active December 15, 2015 09:49
Show Gist options
  • Save Ikke/5240907 to your computer and use it in GitHub Desktop.
Save Ikke/5240907 to your computer and use it in GitHub Desktop.
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