summaryrefslogtreecommitdiff
path: root/pkg/git/patch
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2017-08-07 10:10:02 -0700
committerMichael Forney <mforney@mforney.org>2017-08-10 19:55:43 -0700
commit6b932406db7cb90a2a39638832fef861cb85e815 (patch)
tree35f11cc4fe052e04ee2210f3dbb20e51f5275832 /pkg/git/patch
parentdee95f64d26b887c6f79b86a14dffcc88ed314fd (diff)
git: Install built-in symlinks in GIT_EXEC_DIR
These are required for git aliases to work. I don't use those, but others might.
Diffstat (limited to 'pkg/git/patch')
-rw-r--r--pkg/git/patch/0001-Drop-dashes-from-builtin-invocations-in-scripts.patch107
1 files changed, 0 insertions, 107 deletions
diff --git a/pkg/git/patch/0001-Drop-dashes-from-builtin-invocations-in-scripts.patch b/pkg/git/patch/0001-Drop-dashes-from-builtin-invocations-in-scripts.patch
deleted file mode 100644
index c5fe5e69..00000000
--- a/pkg/git/patch/0001-Drop-dashes-from-builtin-invocations-in-scripts.patch
+++ /dev/null
@@ -1,107 +0,0 @@
-From 04ab5cf17fdc9252910817a1e1e73900239b18ed Mon Sep 17 00:00:00 2001
-From: Michael Forney <mforney@mforney.org>
-Date: Sat, 3 Dec 2016 00:41:41 -0800
-Subject: [PATCH] Drop dashes from builtin invocations in scripts
-
----
- git-merge-octopus.sh | 2 +-
- git-merge-one-file.sh | 8 ++++----
- git-merge-resolve.sh | 2 +-
- git-parse-remote.sh | 2 +-
- git-submodule.sh | 6 +++---
- 5 files changed, 10 insertions(+), 10 deletions(-)
-
-diff --git a/git-merge-octopus.sh b/git-merge-octopus.sh
-index bcf0d92ec..6c390d6c2 100755
---- a/git-merge-octopus.sh
-+++ b/git-merge-octopus.sh
-@@ -100,7 +100,7 @@ do
- if test $? -ne 0
- then
- gettextln "Simple merge did not work, trying automatic merge."
-- git-merge-index -o git-merge-one-file -a ||
-+ git merge-index -o git-merge-one-file -a ||
- OCTOPUS_FAILURE=1
- next=$(git write-tree 2>/dev/null)
- fi
-diff --git a/git-merge-one-file.sh b/git-merge-one-file.sh
-index 424b034e3..9879c5939 100755
---- a/git-merge-one-file.sh
-+++ b/git-merge-one-file.sh
-@@ -115,16 +115,16 @@ case "${1:-.}${2:-.}${3:-.}" in
- ;;
- esac
-
-- src1=$(git-unpack-file $2)
-- src2=$(git-unpack-file $3)
-+ src1=$(git unpack-file $2)
-+ src2=$(git unpack-file $3)
- case "$1" in
- '')
- echo "Added $4 in both, but differently."
-- orig=$(git-unpack-file e69de29bb2d1d6434b8b29ae775ad8c2e48c5391)
-+ orig=$(git unpack-file e69de29bb2d1d6434b8b29ae775ad8c2e48c5391)
- ;;
- *)
- echo "Auto-merging $4"
-- orig=$(git-unpack-file $1)
-+ orig=$(git unpack-file $1)
- ;;
- esac
-
-diff --git a/git-merge-resolve.sh b/git-merge-resolve.sh
-index c9da747fc..343fe7bcc 100755
---- a/git-merge-resolve.sh
-+++ b/git-merge-resolve.sh
-@@ -45,7 +45,7 @@ then
- exit 0
- else
- echo "Simple merge failed, trying Automatic merge."
-- if git-merge-index -o git-merge-one-file -a
-+ if git merge-index -o git-merge-one-file -a
- then
- exit 0
- else
-diff --git a/git-parse-remote.sh b/git-parse-remote.sh
-index d3c39980f..dcfa27177 100644
---- a/git-parse-remote.sh
-+++ b/git-parse-remote.sh
-@@ -2,7 +2,7 @@
- # upstream branch that should be pulled by "git pull" from the current
- # branch.
-
--# git-ls-remote could be called from outside a git managed repository;
-+# git ls-remote could be called from outside a git managed repository;
- # this would fail in that case and would issue an error message.
- GIT_DIR=$(git rev-parse -q --git-dir) || :;
-
-diff --git a/git-submodule.sh b/git-submodule.sh
-index e131760ee..ffa2d6648 100755
---- a/git-submodule.sh
-+++ b/git-submodule.sh
-@@ -864,7 +864,7 @@ cmd_summary() {
- test $status != A && test $ignore_config = all && continue
- fi
- # Also show added or modified modules which are checked out
-- GIT_DIR="$sm_path/.git" git-rev-parse --git-dir >/dev/null 2>&1 &&
-+ GIT_DIR="$sm_path/.git" git rev-parse --git-dir >/dev/null 2>&1 &&
- printf '%s\n' "$sm_path"
- done
- )
-@@ -898,11 +898,11 @@ cmd_summary() {
- missing_dst=
-
- test $mod_src = 160000 &&
-- ! GIT_DIR="$name/.git" git-rev-parse -q --verify $sha1_src^0 >/dev/null &&
-+ ! GIT_DIR="$name/.git" git rev-parse -q --verify $sha1_src^0 >/dev/null &&
- missing_src=t
-
- test $mod_dst = 160000 &&
-- ! GIT_DIR="$name/.git" git-rev-parse -q --verify $sha1_dst^0 >/dev/null &&
-+ ! GIT_DIR="$name/.git" git rev-parse -q --verify $sha1_dst^0 >/dev/null &&
- missing_dst=t
-
- display_name=$(git submodule--helper relative-path "$name" "$wt_prefix")
---
-2.13.4
-