Yet another iteration of the 'git notes' feature. Rebased on top of 'next': - Patches 1-9 are unchanged from (patches 1-7, 11-12 of) the last iteration. - Patch 10 teaches the notes code to free its data structures on request. - Patch 11 introduces the 16-tree notes lookup code that handles SHA1-based fanout schemes. This is pretty much unchanged from patch 8 in the previous iteration. - Patch 12 adds selftests that verify correct parsing of notes trees with various SHA1-based fanouts. - Patch 13 introduces a flexible parser for a variety of date-based and SHA1-based fanout schemes. This is the interesting part, as far as this iteration is concerned. - Patch 14 adds selftests that verify correct parsing of notes trees with various date-based fanouts. Note that the series does not yet include code for _writing_ notes into a suitably structured notes tree. That will be done in a later iteration. I have some performance numbers that I will send in a separate email. Have fun! :) ...Johan Johan Herland (9): Teach "-m <msg>" and "-F <file>" to "git notes edit" fast-import: Add support for importing commit notes t3302-notes-index-expensive: Speed up create_repo() Add flags to get_commit_notes() to control the format of the note string Teach notes code to free its internal data structures on request. Teach the notes lookup code to parse notes trees with various fanout schemes Selftests verifying semantics when loading notes trees with various fanouts Allow flexible organization of notes trees, using both commit date and SHA1 Add test cases for date-based fanouts Johannes Schindelin (5): Introduce commit notes Add a script to edit/inspect notes Speed up git notes lookup Add an expensive test for git-notes Add '%N'-format for pretty-printing commit notes .gitignore | 1 + Documentation/config.txt | 13 + Documentation/git-fast-import.txt | 45 +++- Documentation/git-notes.txt | 60 ++++ Documentation/pretty-formats.txt | 1 + Makefile | 3 + cache.h | 4 + command-list.txt | 1 + commit.c | 1 + config.c | 5 + environment.c | 1 + fast-import.c | 88 +++++- git-notes.sh | 121 +++++++ notes.c | 673 +++++++++++++++++++++++++++++++++++++ notes.h | 12 + pretty.c | 10 + t/t3301-notes.sh | 150 ++++++++ t/t3302-notes-index-expensive.sh | 118 +++++++ t/t3303-notes-subtrees.sh | 201 +++++++++++ t/t9300-fast-import.sh | 166 +++++++++ 20 files changed, 1664 insertions(+), 10 deletions(-) create mode 100644 Documentation/git-notes.txt create mode 100755 git-notes.sh create mode 100644 notes.c create mode 100644 notes.h create mode 100755 t/t3301-notes.sh create mode 100755 t/t3302-notes-index-expensive.sh create mode 100755 t/t3303-notes-subtrees.sh -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html