diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-11-24 07:30:08 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-11-24 07:30:08 +0100 |
commit | e61f25f3a6bb5dcbb5ae5f8b4ad26c308982373c (patch) | |
tree | 2add4512857b856b31b35f2b827975c3d916ff63 /builtin-rev-list.c | |
parent | Merge branch 'mr/gitweb-snapshot' (diff) | |
parent | Add trivial tests for --stdin option to log family (diff) | |
download | git-e61f25f3a6bb5dcbb5ae5f8b4ad26c308982373c.tar.xz git-e61f25f3a6bb5dcbb5ae5f8b4ad26c308982373c.zip |
Merge branch 'jc/log-stdin'
* jc/log-stdin:
Add trivial tests for --stdin option to log family
Make --stdin option to "log" family read also pathspecs
setup_revisions(): do not call get_pathspec() too early
Teach --stdin option to "log" family
read_revision_from_stdin(): use strbuf
Conflicts:
revision.c
Diffstat (limited to 'builtin-rev-list.c')
-rw-r--r-- | builtin-rev-list.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/builtin-rev-list.c b/builtin-rev-list.c index ac1136a3f5..91b604289d 100644 --- a/builtin-rev-list.c +++ b/builtin-rev-list.c @@ -306,7 +306,6 @@ int cmd_rev_list(int argc, const char **argv, const char *prefix) struct rev_info revs; struct rev_list_info info; int i; - int read_from_stdin = 0; int bisect_list = 0; int bisect_show_vars = 0; int bisect_find_all = 0; @@ -351,12 +350,6 @@ int cmd_rev_list(int argc, const char **argv, const char *prefix) bisect_show_vars = 1; continue; } - if (!strcmp(arg, "--stdin")) { - if (read_from_stdin++) - die("--stdin given twice?"); - read_revisions_from_stdin(&revs); - continue; - } usage(rev_list_usage); } |