git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][GSoC] revision: forbid --graph and --no-walk usage
@ 2015-03-06  5:13 Akshay Aurora
  2015-03-06 18:30 ` Junio C Hamano
  0 siblings, 1 reply; 7+ messages in thread
From: Akshay Aurora @ 2015-03-06  5:13 UTC (permalink / raw)
  To: git; +Cc: Akshay Aurora

Signed-off-by: Akshay Aurora <akshayaurora@yahoo.com>
---
This is my first patch for a GSoC Microproject, would be great to have your feedback.

 revision.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/revision.c b/revision.c
index bd027bc..d578652 100644
--- a/revision.c
+++ b/revision.c
@@ -2248,7 +2248,8 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct s
 	 */
 	if (revs->reverse && revs->graph)
 		die("cannot combine --reverse with --graph");
-
+	if (revs->no_walk && revs->graph)
+		die("cannot combine --no-walk with --graph");
 	if (revs->reflog_info && revs->graph)
 		die("cannot combine --walk-reflogs with --graph");
 	if (!revs->reflog_info && revs->grep_filter.use_reflog_filter)
-- 
2.3.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread
[parent not found: <1425582632-28273-1-git-send-email-akshayaurora@yahoo.com>]

end of thread, other threads:[~2015-03-08 10:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-06  5:13 [PATCH][GSoC] revision: forbid --graph and --no-walk usage Akshay Aurora
2015-03-06 18:30 ` Junio C Hamano
2015-03-06 20:57   ` Akshay Aurora
2015-03-08 10:13     ` Matthieu Moy
     [not found] <1425582632-28273-1-git-send-email-akshayaurora@yahoo.com>
2015-03-06  5:08 ` Akshay Aurora
2015-03-06  8:37   ` Max Kirillov
2015-03-06 12:11     ` Akshay Aurora

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).