diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-04-12 08:55:55 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-04-12 08:55:55 +0200 |
commit | eed81838f0d0e031702473e1d427d71055134edd (patch) | |
tree | ba71df8000ce5e640f7258e1bb822461e778da23 /revision.c | |
parent | git-submodule: Avoid 'fatal: cannot describe' message (diff) | |
parent | bisect: fix bad rev checking in "git bisect good" (diff) | |
download | git-eed81838f0d0e031702473e1d427d71055134edd.tar.xz git-eed81838f0d0e031702473e1d427d71055134edd.zip |
Merge branch 'maint-1.5.4' into maint
* maint-1.5.4:
bisect: fix bad rev checking in "git bisect good"
revision.c: make --date-order overriddable
Fix section about backdating tags in the git-tag docs
Document option --only of git commit
Documentation/git-request-pull: Fixed a typo ("send" -> "end")
Diffstat (limited to 'revision.c')
-rw-r--r-- | revision.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/revision.c b/revision.c index 196fedc9d1..ffbed3fbf2 100644 --- a/revision.c +++ b/revision.c @@ -1083,6 +1083,7 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, const ch continue; } if (!strcmp(arg, "--topo-order")) { + revs->lifo = 1; revs->topo_order = 1; continue; } |