diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-07-22 10:22:57 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-07-22 10:22:57 -0700 |
commit | 63618af24a67e5fc959217201d9f220383a39fd0 (patch) | |
tree | a6b75c4ebc22e529a11ff462afecfac20ecf713f /git-remote-testgit.sh | |
parent | bba6acb335e296ed692b4aea224b50fd098f693c (diff) | |
parent | c1cebcf4314a8f18ec06e6d10ce39f49a59076ec (diff) | |
download | git-63618af24a67e5fc959217201d9f220383a39fd0.tar.gz |
Merge branch 'ep/shell-assign-and-export-vars' into maint
* ep/shell-assign-and-export-vars:
scripts: more "export VAR=VALUE" fixes
scripts: "export VAR=VALUE" construct is not portable
Diffstat (limited to 'git-remote-testgit.sh')
-rwxr-xr-x | git-remote-testgit.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git-remote-testgit.sh b/git-remote-testgit.sh index 1c006a0518..a9c75a2360 100755 --- a/git-remote-testgit.sh +++ b/git-remote-testgit.sh @@ -13,7 +13,8 @@ refspec="${GIT_REMOTE_TESTGIT_REFSPEC-$default_refspec}" test -z "$refspec" && prefix="refs" -export GIT_DIR="$url/.git" +GIT_DIR="$url/.git" +export GIT_DIR force= |