From 5fbea03246aff7715693e1d248108c39ab62ce66 Mon Sep 17 00:00:00 2001 From: Dan Brubaker Horst Date: Fri, 25 Oct 2013 11:27:34 -0400 Subject: [PATCH] Stage all deleted files with one command http://dan.brubakerhorst.com/blog/stage-all-deleted-files-in-a-git-repository/ --- bash_aliases | 1 + 1 file changed, 1 insertion(+) diff --git a/bash_aliases b/bash_aliases index a5b85ee..256a4b1 100644 --- a/bash_aliases +++ b/bash_aliases @@ -36,6 +36,7 @@ alias gmt='git mergetool' alias gpo='git push origin master' alias gpr='git pull --rebase' alias grc='git rebase --continue' +alias grm='git ls-files -d | xargs git rm; gst' alias gsh='git show' alias gst='git status --ignore-submodules=dirty'