]> git.ipfire.org Git - thirdparty/git.git/commit - fast-import.c
fast-import: properly fanout notes when tree is imported
authorMike Hommey <mh@glandium.org>
Tue, 20 Dec 2016 21:04:48 +0000 (06:04 +0900)
committerJunio C Hamano <gitster@pobox.com>
Tue, 20 Dec 2016 21:53:26 +0000 (13:53 -0800)
commit405d7f4af64ece9a49c48b1b0c43b161b2dd94d5
treee3d8fcc9a4fe12e7e6ecbf5872b79c0c5976872a
parenta274e0a036ea886a31f8b216564ab1b4a3142f6c
fast-import: properly fanout notes when tree is imported

In typical uses of fast-import, trees are inherited from a parent
commit. In that case, the tree_entry for the branch looks like:

  .versions[1].sha1 = $some_sha1
  .tree = <tree structure loaded from $some_sha1>

However, when trees are imported, rather than inherited, that is not the
case. One can import a tree with a filemodify command, replacing the
root tree object.

e.g.
  "M 040000 $some_sha1 \n"

In this case, the tree_entry for the branch looks like:

  .versions[1].sha1 = $some_sha1
  .tree = NULL

When adding new notes with the notemodify command, do_change_note_fanout
is called to get a notes count, and to do so, it loops over the
tree_entry->tree, but doesn't do anything when the tree is NULL.

In the latter case above, it means do_change_note_fanout thinks the tree
contains no notes, and new notes are added with no fanout.

Interestingly, do_change_note_fanout does check whether subdirectories
have a NULL .tree, in which case it uses load_tree(). Which means the
right behaviour happens when using the filemodify command to import
subdirectories.

This change makes do_change_note_fanount call load_tree() whenever the
tree_entry it is given has no tree loaded, making all cases handled
equally.

Signed-off-by: Mike Hommey <mh@glandium.org>
Reviewed-by: Johan Herland <johan@herland.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
fast-import.c
t/t9301-fast-import-notes.sh