From b26c987fcd883125d2e47918dce8b5b0273c0b76 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Fri, 10 Jan 2020 16:22:13 -0800 Subject: [PATCH] Some nice binds. --- dotfiles/bash/bashrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dotfiles/bash/bashrc b/dotfiles/bash/bashrc index 1e008d7..fb24026 100644 --- a/dotfiles/bash/bashrc +++ b/dotfiles/bash/bashrc @@ -82,6 +82,11 @@ alias vim='nvim' # This alias makes the SBCL REPL usable. alias sbcl='rlwrap sbcl' +# Useful git aliases +alias gita='git add' +alias gitap='git add -p' +alias gitc='git commit' + # -------------- END ALIASES --------------#