diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-11-03 06:59:18 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-11-20 15:10:29 -0800 |
commit | 8b3dce565084c89ceb19f7ccf0fe22ffd365f7fd (patch) | |
tree | 8af65ea645a32792642903fac65a4d776aa2408f /builtin-rev-list.c | |
parent | 63d564b300274ec71a274f9b672366d07ae5620a (diff) | |
download | git-8b3dce565084c89ceb19f7ccf0fe22ffd365f7fd.tar.gz |
Teach --stdin option to "log" family
Move the logic to read revs from standard input that rev-list knows about
from it to revision machinery, so that all the users of setup_revisions()
can feed the list of revs from the standard input when "--stdin" is used
on the command line.
Allow some users of the revision machinery that want different semantics
from the "--stdin" option to disable it by setting an option in the
rev_info structure.
This also cleans up the kludge made to bundle.c via cut and paste.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
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 42cc8d8872..f6a56f34e1 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; @@ -349,12 +348,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); } |