summaryrefslogtreecommitdiff
path: root/builtin/mv.c
diff options
context:
space:
mode:
authorMike Hommey <mh@glandium.org>2016-12-21 06:04:48 +0900
committerJunio C Hamano <gitster@pobox.com>2016-12-20 13:53:26 -0800
commit405d7f4af64ece9a49c48b1b0c43b161b2dd94d5 (patch)
treee3d8fcc9a4fe12e7e6ecbf5872b79c0c5976872a /builtin/mv.c
parenta274e0a036ea886a31f8b216564ab1b4a3142f6c (diff)
downloadgit-405d7f4af64ece9a49c48b1b0c43b161b2dd94d5.tar.gz
fast-import: properly fanout notes when tree is importedmh/fast-import-notes-fix-new
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>
Diffstat (limited to 'builtin/mv.c')
0 files changed, 0 insertions, 0 deletions