Added a few git aliases and enabled ll in bashrc

This commit is contained in:
Kris Lamoureux 2019-11-05 10:16:35 -05:00
parent 7026f3bcc9
commit dcf2d9d87e
Signed by: kris
GPG Key ID: 3EDA9C3441EDA925
2 changed files with 3 additions and 1 deletions

View File

@ -26,6 +26,8 @@ alias 'status'='git status'
alias 'pull'='git pull --rebase' alias 'pull'='git pull --rebase'
alias 'push'='git push' alias 'push'='git push'
alias 'branch'='git branch' alias 'branch'='git branch'
alias 'unstage'='git reset HEAD'
alias 'discard'='git checkout --'
alias 'log'='git log' alias 'log'='git log'
alias 'checkout'='git checkout' alias 'checkout'='git checkout'
alias 'commit'='git commit -S' alias 'commit'='git commit -S'

View File

@ -88,7 +88,7 @@ fi
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' #export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
# some more ls aliases # some more ls aliases
#alias ll='ls -l' alias ll='ls -l'
#alias la='ls -A' #alias la='ls -A'
#alias l='ls -CF' #alias l='ls -CF'