Added a few git aliases and enabled ll in bashrc

This commit is contained in:
2019-11-05 10:16:35 -05:00
parent 7026f3bcc9
commit dcf2d9d87e
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 'push'='git push'
alias 'branch'='git branch'
alias 'unstage'='git reset HEAD'
alias 'discard'='git checkout --'
alias 'log'='git log'
alias 'checkout'='git checkout'
alias 'commit'='git commit -S'