aboutsummaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-05-25 14:05:11 -0700
committerJunio C Hamano <gitster@pobox.com>2008-05-25 14:05:11 -0700
commit450c5aed06ecf60084f993f688b549ffa377b64e (patch)
tree5c4bdf5c4945f56567b3b022664635e2ca1ede92 /Documentation
parentcc26efb3134b28701fe65ac488af2c6abf59b21d (diff)
parent4603ec0f960e582a7da7241563d3f235ad7f0d3e (diff)
downloadgit-450c5aed06ecf60084f993f688b549ffa377b64e.tar.gz
git-450c5aed06ecf60084f993f688b549ffa377b64e.tar.xz
Merge branch 'as/graph'
* as/graph: get_revision(): honor the topo_order flag for boundary commits Fix output of "git log --graph --boundary" log --graph --left-right: show left/right information in place of '*' graph API: don't print branch lines for uninteresting merge parents graph API: fix graph mis-alignment after uninteresting commits
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/technical/api-history-graph.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/technical/api-history-graph.txt b/Documentation/technical/api-history-graph.txt
index ce1c08ee8..e9559790a 100644
--- a/Documentation/technical/api-history-graph.txt
+++ b/Documentation/technical/api-history-graph.txt
@@ -115,7 +115,7 @@ Sample usage
------------
struct commit *commit;
-struct git_graph *graph = graph_init();
+struct git_graph *graph = graph_init(opts);
while ((commit = get_revision(opts)) != NULL) {
graph_update(graph, commit);