Mike Hommey <mh@xxxxxxxxxxxx> writes: > In typical uses of fast-import, trees are inherited from a parent > commit. In that case, the tree_entry for the branch looks like: > ... > +# Create another notes tree from the one above > +cat >>input <<INPUT_END > +... > +M 040000 $(git log --no-walk --format=%T refs/notes/many_notes) There is a trailing SP that cannot be seen by anybody. Don't do this. It makes it very easy to miss what is going on and wastes reviewers' time. Protect it by doing something like: sed -e 's/Z$//' >>input <<INPUT_END ... M 040000 $(git log --no-walk --format=%T refs/notes/many_notes) Z Thanks.