summaryrefslogtreecommitdiffstats
path: root/local/.bin/git/git-record
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2024-02-23 00:04:34 -0500
committerJesse Luehrs <doy@tozt.net>2024-02-23 00:04:34 -0500
commit5744b78be0d7ff168dcaf777c2f98818aab3862f (patch)
tree7ec8378834b61ed3ebf7c66bcaaa7d08d1b72787 /local/.bin/git/git-record
parent82afe435a24f4ea88182f3051e6837d5d6c0d68a (diff)
downloadconf-5744b78be0d7ff168dcaf777c2f98818aab3862f.tar.gz
conf-5744b78be0d7ff168dcaf777c2f98818aab3862f.zip
git helpers should be installed with git, not with the other bin files
Diffstat (limited to 'local/.bin/git/git-record')
-rwxr-xr-xlocal/.bin/git/git-record13
1 files changed, 0 insertions, 13 deletions
diff --git a/local/.bin/git/git-record b/local/.bin/git/git-record
deleted file mode 100755
index eaa36c9..0000000
--- a/local/.bin/git/git-record
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-set -eu
-
-if [ -e "$(git root)/.git/branchless" ]; then
- exec git branchless record "$@"
-else
- if [ "${1:-}" = "-i" ]; then
- git add -p
- else
- git add -u
- fi
- git commit
-fi