Last active
August 29, 2015 14:23
-
-
Save arslanbilal/bdf1a3d66e047e0ffc07 to your computer and use it in GitHub Desktop.
Visualizing branch topology in git
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 log --graph --full-history --all --color \ | |
--pretty=format:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s" | |
#Example Output: | |
* 3876a55 (origin/master, origin/HEAD, master) Merge branch 'master' of https://github.com/ArslanBilal/Instagram-Client | |
|\ | |
| * 7d677fa Merge pull request #1 from ArslanBilal/develop | |
| |\ | |
* | | d799dbc (HEAD, origin/develop, develop) Update README.md for new "Infinite scroll through paginated set of results" feature | |
* | | 88ac929 Infinite scroll through paginated set of results is added | |
* | | 0d40fad Update README.md with update informations | |
* | | 23f40c1 Search with API and listing in CollectionView | |
* | | ac25fdc SearchBar and Its Delegate methods Added. | |
| |/ | |
|/| | |
* | 386b2a1 Update README.md with the done task | |
* | 30e9140 Data Models Created, CollectionView Added, Popular photos showing. | |
* | 9d908c2 LoginView completed. | |
* | 4778e2d Changed the App Name.(Instagram API problem..) | |
* | 4e9e952 Project Initialization | |
|/ | |
* d161da7 Create README.md | |
* 9ba3b4c Initial commit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment