This patch series adds a new --graph option to the log and rev-list commands. This is pretty much the same code that I sent out in early April, but updated to work with the log entry termination fixes in the latest master branch. Adam Simpkins (3): revision API: split parent rewriting and parent printing options Add history graph API log and rev-list: add --graph option Documentation/rev-list-options.txt | 10 + Documentation/technical/api-history-graph.txt | 179 +++++ Makefile | 2 + builtin-rev-list.c | 52 ++- graph.c | 903 +++++++++++++++++++++++++ graph.h | 121 ++++ log-tree.c | 80 ++- revision.c | 33 +- revision.h | 9 +- 9 files changed, 1369 insertions(+), 20 deletions(-) create mode 100644 Documentation/technical/api-history-graph.txt create mode 100644 graph.c create mode 100644 graph.h -- 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