From 2f8309a31fc5562441d34e23342785b432842a58 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Wed, 13 Nov 2019 12:05:11 +1100 Subject: [PATCH] Teach git-up alias to recurse submodules, since we're using them now and it seems fitting --- config/git/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/git/config b/config/git/config index 69a8e6c..d118da3 100644 --- a/config/git/config +++ b/config/git/config @@ -8,7 +8,7 @@ co = checkout d = diff l = log --graph --pretty=graph --date=relative - up = pull --rebase=preserve --autostash + up = pull --rebase=preserve --autostash --recurse-submodules patch = !git --no-pager diff --no-color st = status --short shove = "!f() { git push ${1:-origin} :; }; f"