* [PATCH] graph.c: visual difference on subsequent series @ 2013-10-25 16:07 Milton Soares Filho 2013-10-25 17:13 ` Junio C Hamano 0 siblings, 1 reply; 11+ messages in thread From: Milton Soares Filho @ 2013-10-25 16:07 UTC (permalink / raw) To: git; +Cc: Milton Soares Filho For projects with separate history lines and, thus, multiple root-commits, the linear arrangement of `git log --graph --oneline` does not allow the user to spot where the sequence ends, giving the impression that it's a contiguous history. E.g. History sequence A: a1 -- a2 -- a3 (root-commit) History sequence B: b1 -- b2 -- b3 (root-commit) git log --graph --oneline * a1 * a2 * a3 * b1 * b2 * b3 In a GUI tool, the root-commit of each series would stand out on the graph. This modification changes the commit char to a different symbol ('x'), so users of the command-line graph tool can easily identify root-commits and make sense of where each series is limited to. git log --graph --oneline * a1 * a2 x a3 * b1 * b2 x b3 Signed-off-by: Milton Soares Filho <milton.soares.filho@gmail.com> --- graph.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/graph.c b/graph.c index b24d04c..ec8e960 100644 --- a/graph.c +++ b/graph.c @@ -780,6 +780,15 @@ static void graph_output_commit_char(struct git_graph *graph, struct strbuf *sb) } /* + * Out-stand parentless commits to enforce non-continuity on subsequent + * but separate series + */ + if (graph->commit->parents == NULL) { + strbuf_addch(sb, 'x'); + return; + } + + /* * get_revision_mark() handles all other cases without assert() */ strbuf_addstr(sb, get_revision_mark(graph->revs, graph->commit)); -- 1.8.1.2 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH] graph.c: visual difference on subsequent series 2013-10-25 16:07 [PATCH] graph.c: visual difference on subsequent series Milton Soares Filho @ 2013-10-25 17:13 ` Junio C Hamano 2013-10-25 20:49 ` Milton Soares Filho 0 siblings, 1 reply; 11+ messages in thread From: Junio C Hamano @ 2013-10-25 17:13 UTC (permalink / raw) To: Milton Soares Filho; +Cc: git Milton Soares Filho <milton.soares.filho@gmail.com> writes: > git log --graph --oneline > * a1 > * a2 > x a3 > * b1 > * b2 > x b3 I agree that the problem you are trying to solve is a good thing to tackle, and I also agree that marking a root commit differently from other commits is one way to solve it, but I am not sure if that is the best way. If the stretches of a's and b's in your history are very long, wouldn't it be easier to spot if they are painted in different colours, in addition to or instead of marking the roots differently [*1*], for example? > /* > + * Out-stand parentless commits to enforce non-continuity on subsequent > + * but separate series > + */ > + if (graph->commit->parents == NULL) { > + strbuf_addch(sb, 'x'); > + return; > + } > + > + /* > * get_revision_mark() handles all other cases without assert() > */ > strbuf_addstr(sb, get_revision_mark(graph->revs, graph->commit)); It is unclear why the update goes to this function. At the first glance, I feel that it would be more sensible to add the equivalent code to get_revision_mark()---we do not have to worry about what else, other than calling get_revision_mark() and adding it to sb, would be skipped by the added "return" when we later have to update this function and add more code after the existing strbuf_addstr(). The change implemented your way will lose other information when a root commit is at the boundary, marked as uninteresting, or on the left/right side of traversal (when --left-right is requested). I think these pieces of information your patch seems to be losing are a lot more relevant than "have we hit the root?", especially in the majority of repositories where there is only one root commit. Thanks. [Footnote] *1* Note that I am not saying "the change the patch introduces is not sufficient and you have to paint the commits in different colors" here. I myself think it would be a lot more work to do so, and I even suspect that it may be asking for the moon---you may not even know what root "a1" (and "b1") came from when you are showing these commits without first digging down to the roots and then walking the history backwards, which may not be practically feasible. ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] graph.c: visual difference on subsequent series 2013-10-25 17:13 ` Junio C Hamano @ 2013-10-25 20:49 ` Milton Soares Filho 2013-10-26 2:37 ` Keshav Kini 0 siblings, 1 reply; 11+ messages in thread From: Milton Soares Filho @ 2013-10-25 20:49 UTC (permalink / raw) To: Junio C Hamano; +Cc: git On 25 October 2013 15:13, Junio C Hamano <gitster@pobox.com> wrote: > Milton Soares Filho <milton.soares.filho@gmail.com> writes: > >> git log --graph --oneline >> * a1 >> * a2 >> x a3 >> * b1 >> * b2 >> x b3 > > I agree that the problem you are trying to solve is a good thing to > tackle, and I also agree that marking a root commit differently from > other commits is one way to solve it, but I am not sure if that is > the best way. If the stretches of a's and b's in your history are > very long, wouldn't it be easier to spot if they are painted in > different colours, in addition to or instead of marking the roots > differently [*1*], for example? Thanks for taking your time reviewing this patch, Junio. I didn't really thought it would get any attention since multiple root-commits is not a very common use-case[1]. However, if most people got excited with git-subtree new features as I did, there is a good chance that multiple root-commits are going to become a common-place in the near future ;-) That said, I completely agree that painting with different colors would be a much better fix, however I believe that it can be done in a separate changeset by someone that understands better the impact on the rest of the system. Personally, changing only the mark is sufficient because: a) it'll work on terminal types without coloring support and configurations whose explicitly disable it b) it'll spare myself of running a separate GUI program just to spot where each series begin c) it won't require any visual design skills from a developer (me) without a minimal sense for it :-) By the way, is there a visual or design guideline document for building decorated log graphs? From where comes the inspiration of it? > The change implemented your way will lose other information when a > root commit is at the boundary, marked as uninteresting, or on the > left/right side of traversal (when --left-right is requested). I > think these pieces of information your patch seems to be losing are > a lot more relevant than "have we hit the root?", especially in the > majority of repositories where there is only one root commit. Nice. I'll try to move the logic into get_revision_mark() and hope the priority on handling it is better suited. > [...] > and I even suspect that it may be asking for the moon---you may not > even know what root "a1" (and "b1") came from when you are showing > these commits without first digging down to the roots and then > walking the history backwards, which may not be practically > feasible. It'd be nice to figure out a test-case to emerge it. []s, milton [1]: In git repository itself I could find only seven of them (root-commis) ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] graph.c: visual difference on subsequent series 2013-10-25 20:49 ` Milton Soares Filho @ 2013-10-26 2:37 ` Keshav Kini 2013-10-28 15:41 ` Junio C Hamano 0 siblings, 1 reply; 11+ messages in thread From: Keshav Kini @ 2013-10-26 2:37 UTC (permalink / raw) To: git Milton Soares Filho <milton.soares.filho@gmail.com> writes: > On 25 October 2013 15:13, Junio C Hamano <gitster@pobox.com> wrote: >> Milton Soares Filho <milton.soares.filho@gmail.com> writes: >> >>> git log --graph --oneline >>> * a1 >>> * a2 >>> x a3 >>> * b1 >>> * b2 >>> x b3 >> >> I agree that the problem you are trying to solve is a good thing to >> tackle, and I also agree that marking a root commit differently from >> other commits is one way to solve it, but I am not sure if that is >> the best way. If the stretches of a's and b's in your history are >> very long, wouldn't it be easier to spot if they are painted in >> different colours, in addition to or instead of marking the roots >> differently [*1*], for example? > > Thanks for taking your time reviewing this patch, Junio. I didn't really thought > it would get any attention since multiple root-commits is not a very common > use-case[1]. However, if most people got excited with git-subtree new > features as I did, there is a good chance that multiple root-commits are > going to become a common-place in the near future ;-) I don't think this is that obscure. I've often thought there should be some way to distinguish root commits as well. In fact when dealing with multiple root commits I usually just don't use --oneline and instead use the full --graph view so I can find root commits by grepping for '^ ' :) I should also mention that there are lots of situations where you might see multiple "root commits" not because there are truly multiple commits with no parent in the repository, but because you're looking at some subgraph of the history graph -- that is, you have multiple commits in your display whose parents are purposely excluded. For example, you might be looking at a revision list like 'C ^A ^B': master | .---------------B | / `-------------. O< .---`--C | \ / | `---------------A The commits you were looking at would be these ones: `-------------. .---`--C / So multiple "roots" can appear easily in such cases. > That said, I completely agree that painting with different colors would be > a much better fix, however I believe that it can be done in a separate > changeset by someone that understands better the impact on the rest > of the system. Personally, changing only the mark is sufficient because: > > a) it'll work on terminal types without coloring support and configurations > whose explicitly disable it > b) it'll spare myself of running a separate GUI program just > to spot where each series begin > c) it won't require any visual design skills from a developer (me) > without a minimal sense for it :-) I'm a bit worried that if someone is parsing `git log --graph` output looking for `*` lines they might suddenly start missing the root commits that they were previously able to find. I mean, not that anyone should be doing that, but if we can avoid breaking that, why not do so? What about just putting an extra blank line after every root commit line (possibly except the last one)? That should make it plenty easy to see where the root commits are in --oneline mode. I think it would actually be easier to spot at a glance than replacing `*` with `x` because it creates a gap in all columns of the output, rather than only in column 1. Also, this is very subjective but I think it looks kind of ugly to use "x" :P By the by, you might want to use the `-v` argument to `git send-email` so that people reading the list can tell at a glance which patch versions are newer than which other patch versions. -Keshav ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] graph.c: visual difference on subsequent series 2013-10-26 2:37 ` Keshav Kini @ 2013-10-28 15:41 ` Junio C Hamano 2013-10-28 16:59 ` Keshav Kini 2013-10-28 17:18 ` Milton Soares Filho 0 siblings, 2 replies; 11+ messages in thread From: Junio C Hamano @ 2013-10-28 15:41 UTC (permalink / raw) To: Keshav Kini; +Cc: git, Milton Soares Filho [administrivia: please avoid culling addresses from To:/Cc: lines] Keshav Kini <keshav.kini@gmail.com> writes: > What about just putting an extra blank line after every root commit line > (possibly except the last one)? That should make it plenty easy to see > where the root commits are in --oneline mode. I think it would actually > be easier to spot at a glance than replacing `*` with `x` because it > creates a gap in all columns of the output, rather than only in column > 1. Also, this is very subjective but I think it looks kind of ugly to > use "x" :P I agree to all of the above, including the ugliness of 'x' ;-) A "blank" may however be hard to spot, if the range is limited, though. For example, $ git log --graph --oneline a4.. * HEAD /* a1 | * a2 | * a3 * b1 * b2 * b3 where "a4", which is a root, is the sole parent of "a3" and HEAD is a merge between "a1" and "b1" might produce something like this, while we may get this from the same history, when shown unlimited: $ git log --graph --oneline * HEAD /* a1 | * a2 | * a3 | * a4 | * b1 * b2 * b3 A divider line might make it visually a lot more strong, i.e. $ git log --graph --oneline * HEAD /* a1 | * a2 | * a3 | * a4 | ~~~~~~~~~~~~~~~~~~~~~~~ * b1 * b2 * b3 but I am not sure if it is too distracting. ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] graph.c: visual difference on subsequent series 2013-10-28 15:41 ` Junio C Hamano @ 2013-10-28 16:59 ` Keshav Kini 2013-10-28 17:18 ` Milton Soares Filho 1 sibling, 0 replies; 11+ messages in thread From: Keshav Kini @ 2013-10-28 16:59 UTC (permalink / raw) To: Junio C Hamano; +Cc: git, Milton Soares Filho Junio C Hamano <gitster@pobox.com> writes: > [administrivia: please avoid culling addresses from To:/Cc: lines] Yikes, sorry about that. I've been sending messages through Gmane rather than via email, and I didn't realize the list didn't automatically send messages to the appropriate people who are only reading the list via actual email (as I am not such a person). > Keshav Kini <keshav.kini@gmail.com> writes: >> What about just putting an extra blank line after every root commit line >> (possibly except the last one)? That should make it plenty easy to see >> where the root commits are in --oneline mode. I think it would actually >> be easier to spot at a glance than replacing `*` with `x` because it >> creates a gap in all columns of the output, rather than only in column >> 1. Also, this is very subjective but I think it looks kind of ugly to >> use "x" :P > > I agree to all of the above, including the ugliness of 'x' ;-) > > A "blank" may however be hard to spot, if the range is limited, > though. For example, > > $ git log --graph --oneline a4.. > * HEAD > /* a1 > | * a2 > | * a3 > * b1 > * b2 > * b3 > > where "a4", which is a root, is the sole parent of "a3" and HEAD is > a merge between "a1" and "b1" might produce something like this, > while we may get this from the same history, when shown unlimited: > > $ git log --graph --oneline > * HEAD > /* a1 > | * a2 > | * a3 > | * a4 > | > * b1 > * b2 > * b3 > > A divider line might make it visually a lot more strong, i.e. > > $ git log --graph --oneline > * HEAD > /* a1 > | * a2 > | * a3 > | * a4 > | ~~~~~~~~~~~~~~~~~~~~~~~ > * b1 > * b2 > * b3 > > but I am not sure if it is too distracting. I would be fine with that, fwiw. We can also turn it on and off with a config option if people really don't like it, I suppose... -Keshav ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] graph.c: visual difference on subsequent series 2013-10-28 15:41 ` Junio C Hamano 2013-10-28 16:59 ` Keshav Kini @ 2013-10-28 17:18 ` Milton Soares Filho 2013-10-28 17:39 ` Junio C Hamano 1 sibling, 1 reply; 11+ messages in thread From: Milton Soares Filho @ 2013-10-28 17:18 UTC (permalink / raw) To: Junio C Hamano; +Cc: Keshav Kini, git On 28 October 2013 13:41, Junio C Hamano <gitster@pobox.com> wrote: > I agree to all of the above, including the ugliness of 'x' ;-) > > A "blank" may however be hard to spot, if the range is limited, > though. For example, A 'x' looks like termination points in some specification languages such as SDL and MSC and thus translates directly to the idea of a root-commit, at least IMO. For sure it does not stand out as blatantly as it should, but it gives a general idea without further distractions, which seems to be the idea of a simple 'git log --graph --oneline'. An idea that have just come to mind is to have a decorator to enforce this property, like this. * HEAD /* a1 | * a2 | * a3 | x a4 (root-commit) * b1 * b2 x b3 (root-commit) This way the user only gets 'distracted' if he explicitly asks for it (--decorate), with all its colors and whatnot. What do you think? Should I aim for it? Besides anything else, this discussion is becoming very subjective. I've received private feedbacks thanking for the changeset and not a word against the poor 'x'. Maybe it's time to talk to a UI designer or let a benevolent dictator set this quarrel off ;-) []s, milton ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] graph.c: visual difference on subsequent series 2013-10-28 17:18 ` Milton Soares Filho @ 2013-10-28 17:39 ` Junio C Hamano 2013-12-20 20:22 ` [RFH/PATCH] graph: give an extra gap after showing root commit Junio C Hamano 0 siblings, 1 reply; 11+ messages in thread From: Junio C Hamano @ 2013-10-28 17:39 UTC (permalink / raw) To: Milton Soares Filho; +Cc: Keshav Kini, git Milton Soares Filho <milton.soares.filho@gmail.com> writes: > On 28 October 2013 13:41, Junio C Hamano <gitster@pobox.com> wrote: >> I agree to all of the above, including the ugliness of 'x' ;-) >> >> A "blank" may however be hard to spot, if the range is limited, >> though. For example, > > A 'x' looks like termination points in some specification languages > such as SDL and MSC and thus translates directly to the idea of a > root-commit, at least IMO. For sure it does not stand out as blatantly > as it should, but it gives a general idea without further > distractions, which seems to be the idea of a simple 'git log --graph > --oneline'. > > An idea that have just come to mind is to have a decorator to enforce > this property, like this. > > * HEAD > /* a1 > | * a2 > | * a3 > | x a4 (root-commit) > * b1 > * b2 > x b3 (root-commit) > > This way the user only gets 'distracted' if he explicitly asks for it > (--decorate), with all its colors and whatnot. What do you think? > Should I aim for it? > > Besides anything else, this discussion is becoming very subjective. If I have to choose, I'd rather avoid using 'x' or anything that have to override '*', not just 'x' being ugly, but the approach to _replace_ the "revision-mark" (usually '*' but sometimes '<', '^', etc) forces us to give priority between "root-ness" and other kinds of information (e.g. "left-ness"). That was the primary reason I liked Keshav's suggestion to use one extra line _below_ the root, which will allow us to still keep the existing information unlike what we discussed in our back-and-forth during the initial review. I also think a blank (or divider) below the root commits does make it visually obvious that nothing comes _before_ the root commit in the history, which probably even removes the need to paint the tracks of histories leading to different roots in different colours. I hope the above shows that my reaction was much less subjective than my response sounded ;-) Thanks. ^ permalink raw reply [flat|nested] 11+ messages in thread
* [RFH/PATCH] graph: give an extra gap after showing root commit 2013-10-28 17:39 ` Junio C Hamano @ 2013-12-20 20:22 ` Junio C Hamano 2013-12-20 22:03 ` Junio C Hamano 2014-01-03 20:16 ` Thomas Rast 0 siblings, 2 replies; 11+ messages in thread From: Junio C Hamano @ 2013-12-20 20:22 UTC (permalink / raw) To: git; +Cc: Keshav Kini, Milton Soares Filho, Adam Simpkins With a history with more than one root commit, if a root commit falls on one display column and another commit that is unrelated to that root's history is shown on the next line on the same column, the resulting graph would appear as if the latter is a parent of the former, like this (there are two histories a1-a2 & b1-b2): ------------------------------------------ $ git log --graph --oneline a2 b2 * a2 * a1 * b2 * b1 ------------------------------------------ which is misleading. b2 is a tip of a history unrelated to the history that has a1 as a root. Force a gap line immediately before showing next unrelated commit if we showed a root from one history, to make the above display look like this instead: ------------------------------------------ $ git log --graph --oneline a2 b2 * a2 * a1 * b2 * b1 ------------------------------------------ but do not waste line when we do not have to. E.g. with a history that merges a2 and b2, ------------------------------------------ $ git log --graph --oneline m * Merge a2 and b2 |\ | * a2 | * a1 * b2 * b1 ------------------------------------------ there is no need to show an extra blank line after showing a1, as it is clear that it has no parents. This takes inspiration from Milton Soares Filho's "graph.c: mark root commit differently" from a few months ago ($gmane/236708), which tried to show a root commit as 'x', but only if it would have been shown as '*' in the original, but uses a different approach so that a root that may have been painted differently from '*' (e.g. '<' for "left root") can also be made distinguishable. Signed-off-by: Junio C Hamano <gitster@pobox.com> --- Note that this still does not work very well for --boundary case (see the last test added to t6016). It may actually make sense to force the "next" commit after showing a root always occupy a different column, instead of wasting a blank line. If we did so, the output from the first example may look like this: ------------------------------------------ $ git log --graph --oneline a2 b2 * a2 * a1 * b2 * b1 ------------------------------------------ or it may even look like this: ------------------------------------------ $ git log --graph --oneline a2 b2 * a2 * a1 * b2 / * b1 ------------------------------------------ I tried to follow graph_update_columns() logic but gave up for now; avoiding to place a commit whose descendant has already been seen to the same column as the root commit we are processing there is easy, but the current commit may not yet be in columns[], and graph_output_commit_line() needs to show the current commit beyond the end of the columns[] list in such a case, so teaching graph_update_columns() to tweak placement of the next line is not sufficient. graph.c | 20 ++++++++++++++++-- t/t6016-rev-list-graph-simplify-history.sh | 34 ++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 2 deletions(-) diff --git a/graph.c b/graph.c index b24d04c..2c3f141 100644 --- a/graph.c +++ b/graph.c @@ -187,6 +187,10 @@ struct git_graph { * stored as an index into the array column_colors. */ unsigned short default_column_color; + /* The last one was a root and we haven't emitted an extra blank */ + unsigned need_post_root_gap : 1; + /* Are we looking at the root? */ + unsigned is_root : 1; }; static struct strbuf *diff_output_prefix_callback(struct diff_options *opt, void *data) @@ -205,7 +209,7 @@ static struct strbuf *diff_output_prefix_callback(struct diff_options *opt, void struct git_graph *graph_init(struct rev_info *opt) { - struct git_graph *graph = xmalloc(sizeof(struct git_graph)); + struct git_graph *graph = xcalloc(1, sizeof(struct git_graph)); if (!column_colors) graph_set_column_colors(column_colors_ansi, @@ -552,11 +556,14 @@ static void graph_update_columns(struct git_graph *graph) void graph_update(struct git_graph *graph, struct commit *commit) { struct commit_list *parent; + int was_root = graph->is_root; /* * Set the new commit */ graph->commit = commit; + graph->is_root = !commit->parents; + graph->need_post_root_gap = 0; /* * Count how many interesting parents this commit has @@ -607,8 +614,12 @@ void graph_update(struct git_graph *graph, struct commit *commit) else if (graph->num_parents >= 3 && graph->commit_index < (graph->num_columns - 1)) graph->state = GRAPH_PRE_COMMIT; - else + else { graph->state = GRAPH_COMMIT; + if (was_root && + graph->prev_commit_index == graph->commit_index) + graph->need_post_root_gap = 1; + } } static int graph_is_mapping_correct(struct git_graph *graph) @@ -814,6 +825,11 @@ static void graph_output_commit_line(struct git_graph *graph, struct strbuf *sb) int seen_this = 0; int i, chars_written; + if (graph->need_post_root_gap) { + graph->need_post_root_gap = 0; + strbuf_addch(sb, '\n'); + } + /* * Output the row containing this commit * Iterate up to and including graph->num_columns, diff --git a/t/t6016-rev-list-graph-simplify-history.sh b/t/t6016-rev-list-graph-simplify-history.sh index f7181d1..ca53a80 100755 --- a/t/t6016-rev-list-graph-simplify-history.sh +++ b/t/t6016-rev-list-graph-simplify-history.sh @@ -264,4 +264,38 @@ test_expect_success '--graph --boundary ^C3' ' test_cmp expected actual ' +one_independent_branch () { + git checkout --orphan root$1 A1 && + test_commit root_$1 && + test_commit then_$1 && + test_commit further_$1 +} + +test_expect_success 'multi-root setup' ' + one_independent_branch 0 && + one_independent_branch 1 && + one_independent_branch 2 && + + git checkout -b merge210 root2 && + test_tick && + git merge -s ours root1 && + test_tick && + git merge -s ours root0 +' + +test_expect_success 'multi-root does not emit unnecessary post-root gap' ' + git log --oneline --graph >actual && + ! grep "^$" actual +' + +test_expect_success 'multi-root does show necessary post-root gap' ' + git log --oneline --graph root0 root1 root2 >actual && + test $(grep -c "^$" actual) = 2 +' + +test_expect_failure 'multi-root does not emit unnecessary post-root gap' ' + git log --oneline --graph merge210~1...merge210~1^2~2 >actual && + ! grep "^$" actual +' + test_done -- 1.8.5.2-297-g3e57c29 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [RFH/PATCH] graph: give an extra gap after showing root commit 2013-12-20 20:22 ` [RFH/PATCH] graph: give an extra gap after showing root commit Junio C Hamano @ 2013-12-20 22:03 ` Junio C Hamano 2014-01-03 20:16 ` Thomas Rast 1 sibling, 0 replies; 11+ messages in thread From: Junio C Hamano @ 2013-12-20 22:03 UTC (permalink / raw) To: git; +Cc: Keshav Kini, Milton Soares Filho, Adam Simpkins Junio C Hamano <gitster@pobox.com> writes: > Note that this still does not work very well for --boundary case > (see the last test added to t6016). > ... > +test_expect_failure 'multi-root does not emit unnecessary post-root gap' ' > + git log --oneline --graph merge210~1...merge210~1^2~2 >actual && > + ! grep "^$" actual > +' Obviously, this needs to be git log --oneline --graph --boundary merge210~1...merge210~1^2~2 >actual && for it to fail. ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [RFH/PATCH] graph: give an extra gap after showing root commit 2013-12-20 20:22 ` [RFH/PATCH] graph: give an extra gap after showing root commit Junio C Hamano 2013-12-20 22:03 ` Junio C Hamano @ 2014-01-03 20:16 ` Thomas Rast 1 sibling, 0 replies; 11+ messages in thread From: Thomas Rast @ 2014-01-03 20:16 UTC (permalink / raw) To: Junio C Hamano; +Cc: git, Keshav Kini, Milton Soares Filho, Adam Simpkins Hi Junio, I briefly looked at d84a3da (jc/graph-post-root-gap) in pu, and have this nit: > diff --git a/t/t6016-rev-list-graph-simplify-history.sh b/t/t6016-rev-list-graph-simplify-history.sh > [...] > +one_independent_branch () { > + git checkout --orphan root$1 A1 && > + test_commit root_$1 && The naming of root0 etc. makes the test below rather confusing to read, because test_commit root_0 also creates a tag called root_0. So you set up history that has a tag root_0 that points *only* at the root, and a branch root0 that includes two more commits. > +test_expect_failure 'multi-root does show necessary post-root gap' ' > + sed -e "s/ #$/ /" >expect <<-\EOF && > + * further_2 > + * then_2 > + * root_2 > + * further_1 > + * then_1 > + * root_1 > + * further_0 > + * then_0 > + * root_0 > + EOF > + git log --graph --format=%s root0 root1 root2 >actual && > + test_cmp expect actual > +' -- Thomas Rast tr@thomasrast.ch ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2014-01-03 20:16 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-10-25 16:07 [PATCH] graph.c: visual difference on subsequent series Milton Soares Filho 2013-10-25 17:13 ` Junio C Hamano 2013-10-25 20:49 ` Milton Soares Filho 2013-10-26 2:37 ` Keshav Kini 2013-10-28 15:41 ` Junio C Hamano 2013-10-28 16:59 ` Keshav Kini 2013-10-28 17:18 ` Milton Soares Filho 2013-10-28 17:39 ` Junio C Hamano 2013-12-20 20:22 ` [RFH/PATCH] graph: give an extra gap after showing root commit Junio C Hamano 2013-12-20 22:03 ` Junio C Hamano 2014-01-03 20:16 ` Thomas Rast
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).