summaryrefslogtreecommitdiff
path: root/.gitconfig
diff options
context:
space:
mode:
authorMike Crute <crutem@amazon.com>2017-09-01 10:27:14 -0700
committerMike Crute <mike@crute.us>2017-09-01 10:27:14 -0700
commitd38268a63e165d5d08fc3d22511809bdb0e4c754 (patch)
tree0ae86e76e7d45d51aad84e004b8c8cfc795c92d3 /.gitconfig
parent1ec19b2b2cff38dcaf31c5d68435eda045dfcd2b (diff)
downloaddotfiles-d38268a63e165d5d08fc3d22511809bdb0e4c754.tar.bz2
dotfiles-d38268a63e165d5d08fc3d22511809bdb0e4c754.tar.xz
dotfiles-d38268a63e165d5d08fc3d22511809bdb0e4c754.zip
Generalize git in/out
Diffstat (limited to '.gitconfig')
-rw-r--r--.gitconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitconfig b/.gitconfig
index c1d1bcf..7e9f71f 100644
--- a/.gitconfig
+++ b/.gitconfig
@@ -32,8 +32,8 @@
32 sm = submodule 32 sm = submodule
33 33
34 fm = merge --ff-only 34 fm = merge --ff-only
35 in = !git l ..origin/master 35 in = !"git l ..origin/$(git rev-parse --abbrev-ref HEAD)"
36 out = !git l origin/master.. 36 out = !"git l origin/$(git rev-parse --abbrev-ref HEAD).."
37 37
38 pr = pull --rebase 38 pr = pull --rebase
39 ar = add -A 39 ar = add -A