From dcf2d9d87e7a28f583359aab2e04f95948a4026c Mon Sep 17 00:00:00 2001 From: Kris Lamoureux Date: Tue, 5 Nov 2019 10:16:35 -0500 Subject: [PATCH] Added a few git aliases and enabled ll in bashrc --- .bash_aliases | 2 ++ .bashrc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.bash_aliases b/.bash_aliases index e282bc0..003e726 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -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' diff --git a/.bashrc b/.bashrc index ea17af8..77b8738 100644 --- a/.bashrc +++ b/.bashrc @@ -88,7 +88,7 @@ fi #export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' # some more ls aliases -#alias ll='ls -l' +alias ll='ls -l' #alias la='ls -A' #alias l='ls -CF'