Created
October 30, 2016 16:18
-
-
Save hai5nguy/5e876d023958a6cc8e42a499b114994a 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
gl () { | |
echo '-----------------------------------------------------------'; | |
if [[ $# = 0 ]]; then | |
git log --graph --decorate --oneline --all --max-count 25; | |
else | |
git log --graph --decorate --oneline --all --max-count $1; | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment