This commit is contained in:
yuriy 2023-11-22 00:47:54 -05:00
parent ad38ccbdfd
commit 7b5fda5b84

10
.bashrc
View File

@ -416,6 +416,14 @@ export PATH="$HOME/.local/bin:$PATH"
# Git Aliases
alias gac="git add .;git commit -m"
alias gacc="{git add .;git commit -m '$1' ; git push"
alias gacc="git add . ; git commit -m '${1}' ; git push"
alias gpm="git push origin master"
alias pull="git pull"
alias gpp="git pull"
alias gl="git log"
alias glo="git log --oneline"
alias gch="git checkout ${1}"
################################################################################