Created
August 31, 2020 10:23
-
-
Save capitalsav/59cd7a4781978d7e570bc7be8333d0b6 to your computer and use it in GitHub Desktop.
My configuration for .bashrc
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 git status | |
alias gs="git status" | |
# Alias git add . | |
alias ga="git add ." | |
# Function for git commit (instead of alias) | |
gc() { | |
git commit -m "$1" | |
} | |
# Alias git push | |
alias gp="git push" | |
# Alias git fetch | |
alias gf="git fetch" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment