Last active
October 1, 2020 02:21
-
-
Save LiewJunTung/035136aac33f455d9ad1 to your computer and use it in GitHub Desktop.
Useful alias for 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
#!/bin/bash | |
git config --global alias.lg "log --oneline --decorate --all --graph" | |
git config --global alias.s "status -s" | |
git config --global pull.rebase true | |
git config --global rerere.enabled true | |
git config --global user.name "Liew Jun Tung" | |
git config --global user.email [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment