Misc updates

This commit is contained in:
David Tomaschik
2026-02-18 16:10:06 -08:00
parent cdbc40d1e8
commit 9ab1f9c298
14 changed files with 243 additions and 26 deletions

View File

@@ -0,0 +1,9 @@
# Change to the root of the git repository.
# If not in a git repo, do nothing.
cdgr() {
local git_root
git_root=$(git rev-parse --show-toplevel 2>/dev/null)
if [ -n "$git_root" ]; then
cd "$git_root"
fi
}