Re: [PATCH v3 05/14] commit-graph: implement 'git-commit-graph write'

2018-02-13 Thread Jonathan Tan
On Thu, 8 Feb 2018 15:37:29 -0500 Derrick Stolee wrote: > +test_expect_success 'setup full repo' ' > + rm -rf .git && > + mkdir full && > + cd full && > + git init && > + packdir=".git/objects/pack"' Thanks for simplifying the repo generated in the test.

[PATCH v3 05/14] commit-graph: implement 'git-commit-graph write'

2018-02-08 Thread Derrick Stolee
Teach git-commit-graph to write graph files. Create new test script to verify this command succeeds without failure. Signed-off-by: Derrick Stolee --- Documentation/git-commit-graph.txt | 39 + builtin/commit-graph.c | 43 +++