Last active
May 26, 2018 20:54
-
-
Save daniellima/01b5a728d5692ef30bf767a4a562994d to your computer and use it in GitHub Desktop.
Snippets to show git info live while you execute git commands. Good for demonstration
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
| Snippets to show git info live while you execute git commands. Good for demonstration |
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
| while true; | |
| do | |
| clear | |
| git log \ | |
| --oneline \ | |
| --graph \ | |
| --all \ | |
| --color \ | |
| -14 | |
| sleep 1 | |
| done |
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
| while true; | |
| do | |
| clear | |
| git status | |
| sleep 1 | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment