From 411fc4073b2d4a51ab4a9d56dc592af89ebf43bd Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Tue, 23 Mar 2021 08:24:36 +0000 Subject: [PATCH] Recurse submodules with `git up` --- .gitconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitconfig b/.gitconfig index 4efec5e..1ecc6ef 100644 --- a/.gitconfig +++ b/.gitconfig @@ -21,7 +21,7 @@ lgd = log -p --decorate history = log --pretty=oneline --abbrev-commit --all --graph --decorate tidy = !git remote prune origin && git fetch -p && git branch -vv | awk '/: gone]/ {print $1}' | xargs -r git branch -D - update = !git pull && git tidy + update = !git pull --recurse-submodules && git tidy st = status ci = commit co = checkout