From f873a273d1381574fd9b2f3f613c0c7e40fe3a1c Mon Sep 17 00:00:00 2001 From: Christian Couder Date: Mon, 14 Jun 2010 00:29:38 -0500 Subject: revert: accept arbitrary rev-list options This can be useful to do something like: git rev-list --reverse master -- README | git cherry-pick -n --stdin without using xargs. Signed-off-by: Christian Couder Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- builtin/revert.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'builtin/revert.c') diff --git a/builtin/revert.c b/builtin/revert.c index 853e9e406c..3f4a20edd0 100644 --- a/builtin/revert.c +++ b/builtin/revert.c @@ -78,7 +78,8 @@ static void parse_args(int argc, const char **argv) die("program error"); } - commit_argc = parse_options(argc, argv, NULL, options, usage_str, 0); + commit_argc = parse_options(argc, argv, NULL, options, usage_str, + PARSE_OPT_KEEP_UNKNOWN); if (commit_argc < 1) usage_with_options(usage_str, options); -- cgit v1.2.1