We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86de04c commit 1f73862Copy full SHA for 1f73862
git-subtree.sh
@@ -338,9 +338,9 @@ cmd_split()
338
unrevs="$(find_existing_splits "$dir" "$revs")"
339
fi
340
341
- # We can't restrict rev-list to only "$dir" here, because that leaves out
342
- # critical information about commit parents.
343
- debug "git rev-list --reverse --parents $revs $unrevs"
+ # We can't restrict rev-list to only $dir here, because some of our
+ # parents have the $dir contents the root, and those won't match.
+ # (and rev-list --follow doesn't seem to solve this)
344
git rev-list --reverse --parents $revs $unrevs |
345
while read rev parents; do
346
debug
0 commit comments