summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--aliases.gitconfig5
1 files changed, 4 insertions, 1 deletions
diff --git a/aliases.gitconfig b/aliases.gitconfig
index b1467a1..91d0713 100644
--- a/aliases.gitconfig
+++ b/aliases.gitconfig
@@ -67,7 +67,10 @@
# Stage the work tree, verbatim, including removals and renames: `git
# this` - try to keep `git status` clean all the time, or this will
# make you so, so sad. `.git/info/exclude` is a great help for this.
- this = add --all
+ this = add --all :/
+ # Stage this subdirectory of the work tree, verbatim, including
+ # removals and renames: `git these`.
+ these = add --all .
# Replace the most recent commit: `git amend [commit options]`.
amend = commit --amend --no-edit
# Retrofit changes onto an old commit during the next rebase/rewrite: