Created
May 24, 2011 03:02
-
-
Save matthewmccullough/988077 to your computer and use it in GitHub Desktop.
Visualize Git Orphans via gitk and log
This file contains 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
# Put this in your .gitconfig file under the alias section | |
orphank = !gitk --all `git reflog | cut -c1-7`& | |
# Then run it by typing 'git orphank' on the command line. | |
# A text version of the same is | |
orphanl = !git --pretty=oneline --abbrev-commit --graph --decorate `git reflog | cut -c1-7` |
This file contains 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
* a17bf55 (HEAD, master) Placeholder | |
* 8d2636d (origin/master, origin/HEAD) Added text about image diff example | |
| * 7c0ffa9 (origin/feature_image, feature_image) Made changes to an image to sh | |
| * 7c1bf73 Created an image to be used for web image diffing on GitHub | |
|/ | |
| * d5f4cdc Made changes to an image to show GitHub web image diffing. | |
| * 2a354dd Created an image to be used for web image diffing on GitHub | |
| | * e9eb5b9 Made changes to an image to show GitHub web image diffing. | |
| | * 417a71b Created an image to be used for web image diffing on GitHub | |
| | | * 9648459 Made changes to an image to show GitHub web image diffing. | |
| | | | * 1aad461 Changes to image | |
| | | |/ | |
| | | * b5e6eb5 Created an image to be used for web image diffing on GitHub | |
| | | | * 6dc1b97 Image 1 | |
| | | |/ | |
| | | | * 9915b4e Changes to image | |
| | | | * e64fb9d Image 1 | |
| | | | * 9a53b8e Good change from mattaltego | |
| | | | * 2961fee Revert "Main feature" | |
| | | |/ | |
| | | | * d7b2900 Changes to image | |
| | | | * 949320c Image 1 | |
| | | | * 3462650 Merge branch 'master' of github.com:matthewmccullough/hellog |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@mercuriete The gitk man page you linked to does mention this
And the
git rev-list
man page documents--reflog
and many other options.