Created
April 15, 2020 14:41
-
-
Save tostercx/126dcf2ac4a047e8fc9e2b4a639d7a69 to your computer and use it in GitHub Desktop.
linux git shortcuts
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
alias gs='git status' | |
alias gp='git push' | |
gc() { | |
git commit -m "$*" | |
} | |
ga() { | |
git add $* | |
} | |
gx() { | |
git update-index --chmod=+x $* | |
} | |
gr() { | |
cd $(git rev-parse --show-toplevel) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment