summaryrefslogtreecommitdiffstats
path: root/bin/git/git-amend
diff options
context:
space:
mode:
Diffstat (limited to 'bin/git/git-amend')
-rwxr-xr-xbin/git/git-amend13
1 files changed, 0 insertions, 13 deletions
diff --git a/bin/git/git-amend b/bin/git/git-amend
deleted file mode 100755
index 3b937ec..0000000
--- a/bin/git/git-amend
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-set -eu
-
-if [ -e "$(git root)/.git/branchless" ]; then
- exec git branchless amend "$@"
-else
- if [ "${1:-}" = "-i" ]; then
- git add -p
- else
- git add -u
- fi
- git commit --amend
-fi