The sixth iteration of the 'git notes' feature. Rebased on top of current 'next', otherwise unchanged from v5. 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 various 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