From 8a62a3097c55b22ee4543edef10322775ef62c92 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Wed, 13 Jul 2005 12:45:06 -0700 Subject: [PATCH] [PATCH] diff-stages: support "-u" as a synonym for "-p". Just to be consistent, support "-u" as a synonym for "-p" like everybody else does. Signed-off-by: Junio C Hamano Signed-off-by: Linus Torvalds --- diff-stages.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/diff-stages.c b/diff-stages.c index 9d8cc73e67..738fe5d987 100644 --- a/diff-stages.c +++ b/diff-stages.c @@ -67,7 +67,7 @@ int main(int ac, const char **av) const char *arg = av[1]; if (!strcmp(arg, "-r")) ; /* as usual */ - else if (!strcmp(arg, "-p")) + else if (!strcmp(arg, "-p") || !strcmp(arg, "-u")) diff_output_format = DIFF_FORMAT_PATCH; else if (!strncmp(arg, "-B", 2)) { if ((diff_break_opt = diff_scoreopt_parse(arg)) == -1) -- 2.11.4.GIT