-
Notifications
You must be signed in to change notification settings - Fork 622
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for `tig log --graph` was added in 2.0 with fa2fcc9 but was later broken in 2.2 with 178c45c when the box structure was implemented. This makes it work again, though it would be cleaner to move the implementation from draw.c to log.c and pager.c, using the box structure.
- Loading branch information
Showing
2 changed files
with
55 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/bin/sh | ||
|
||
. libtest.sh | ||
. libgit.sh | ||
|
||
steps ' | ||
:save-display log-graph.screen | ||
' | ||
|
||
in_work_dir create_repo_from_tgz "$base_dir/files/scala-js-benchmarks.tgz" | ||
|
||
test_tig log --graph e59a941 | ||
|
||
assert_equals 'log-graph.screen' <<EOF | ||
* commit e59a941c4e7d51cd172ee2767a031f5f3fd25d05 | ||
|\ Merge: 110e090 940efaf | ||
| | Author: Jonas Fonseca <[email protected]> | ||
| | Date: Thu Jan 16 07:47:58 2014 -0800 | ||
| | | ||
| | Merge pull request #4 from phaller/patch-1 | ||
| | | ||
| | Fix link to Dart benchmark harness | ||
| | | ||
| | README.md | 2 +- | ||
| | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| | | ||
| * commit 940efafc379db7c6df99449d6c4da98c6a2b3d07 | ||
|/ Author: Philipp Haller <[email protected]> | ||
| Date: Thu Jan 16 15:32:52 2014 +0100 | ||
| | ||
| Fix link to Dart benchmark harness | ||
| | ||
| README.md | 2 +- | ||
| 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| | ||
* commit 110e090f815f40d649f5432172584057b550a160 | ||
| Author: Jonas Fonseca <[email protected]> | ||
| Date: Tue Dec 17 00:02:15 2013 +0100 | ||
| | ||
| Update links to reflect project name change | ||
| | ||
| scalajs-benchmarks -> scala-js-benchmarks | ||
[log] e59a941c4e7d51cd172ee2767a031f5f3fd25d05 - line 1 of 559 5% | ||
EOF |