diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-06-05 14:56:24 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-05 14:56:24 -0700 |
commit | 779fd737d79a3e19a1aa420c33cf1195c7e20dd7 (patch) | |
tree | b301d581ab1699dcbf8c3777994c0d73a91cbc67 /contrib | |
parent | eb2694762c36bb6a8fbe4a12e5022a54f7052894 (diff) | |
parent | 6912ea952bf5d1b2d21d5935d6b726bab02d8bf6 (diff) | |
download | git-779fd737d79a3e19a1aa420c33cf1195c7e20dd7.tar.gz |
Merge branch 'dm/unbash-subtree'
It turns out that git-subtree script does not have to be run with
bash.
* dm/unbash-subtree:
contrib/git-subtree: Use /bin/sh interpreter instead of /bin/bash
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/subtree/git-subtree.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/subtree/git-subtree.sh b/contrib/subtree/git-subtree.sh index 10daa8b0eb..51ae932e5e 100755 --- a/contrib/subtree/git-subtree.sh +++ b/contrib/subtree/git-subtree.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # # git-subtree.sh: split/join git repositories in subdirectories of this one # |