diff options
author | Avery Pennarun <apenwarr@gmail.com> | 2009-04-26 09:55:59 -0400 |
---|---|---|
committer | Avery Pennarun <apenwarr@gmail.com> | 2009-04-26 09:55:59 -0400 |
commit | 86de04c6eb9ffcb4ed11f1f18bcc62f868cfb743 (patch) | |
tree | 4fc7a0d458f63287285e7a2f2600c177d9a1a113 | |
parent | Add --annotate option, and create recognizable file content during tests. (diff) | |
download | tgif-86de04c6eb9ffcb4ed11f1f18bcc62f868cfb743.tar.xz |
Typo when searching for existing splits.
-rwxr-xr-x | git-subtree.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-subtree.sh b/git-subtree.sh index e54651c336..8b797dfc23 100755 --- a/git-subtree.sh +++ b/git-subtree.sh @@ -145,7 +145,7 @@ find_existing_splits() dir="$1" revs="$2" git log --grep="^git-subtree-dir: $dir\$" \ - --pretty=format:'%s%n%n%b%nEND' "$revs" | + --pretty=format:'%s%n%n%b%nEND' $revs | while read a b junk; do case "$a" in git-subtree-mainline:) main="$b" ;; |