summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-09-17 10:57:46 -0400
committerJesse Luehrs <doy@tozt.net>2023-09-17 10:57:46 -0400
commite727e366d386cb49590c2c65969817f89583656a (patch)
tree29c8caaef2c086235dcca67312deda5ec944c0e9 /config
parentdf52f6786a48db5045b89bdccb512b2492098e5e (diff)
downloadconf-e727e366d386cb49590c2c65969817f89583656a.tar.gz
conf-e727e366d386cb49590c2c65969817f89583656a.zip
factor out finding the git root
Diffstat (limited to 'config')
-rw-r--r--config/git/config1
-rw-r--r--config/sh/functions8
2 files changed, 2 insertions, 7 deletions
diff --git a/config/git/config b/config/git/config
index 48afbdc..851611e 100644
--- a/config/git/config
+++ b/config/git/config
@@ -32,6 +32,7 @@
re = rebase -i @{u}
r = !git record
ri = rebase -i
+ root = !~/.bin/git/git-root
rv = checkout -p
stashed = stash list --pretty=format:'%<(10)%gd: %Cred%h%Creset %Cgreen(%ar)%Creset%n %s'
st = status -sb
diff --git a/config/sh/functions b/config/sh/functions
index 76db947..b64c4cf 100644
--- a/config/sh/functions
+++ b/config/sh/functions
@@ -8,13 +8,7 @@ function perldoc {
}
function cdu {
- local root
- root="$(git rev-parse --show-superproject-working-tree 2>/dev/null)"
- if [ -n "$root" ]; then
- cd "$root" || return
- else
- cd "$(git rev-parse --show-toplevel)" || return
- fi
+ cd "$(git root)" || return
}
# vim:ft=sh: