diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-05-25 14:05:11 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-05-25 14:05:11 -0700 |
commit | 450c5aed06ecf60084f993f688b549ffa377b64e (patch) | |
tree | 5c4bdf5c4945f56567b3b022664635e2ca1ede92 /Documentation | |
parent | cc26efb3134b28701fe65ac488af2c6abf59b21d (diff) | |
parent | 4603ec0f960e582a7da7241563d3f235ad7f0d3e (diff) | |
download | git-450c5aed06ecf60084f993f688b549ffa377b64e.tar.gz |
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.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/technical/api-history-graph.txt b/Documentation/technical/api-history-graph.txt index ce1c08ee86..e9559790a3 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); |