Code

clone-pack: remove unused and undocumented --keep flag
authorJunio C Hamano <junkio@cox.net>
Sun, 18 Dec 2005 09:55:29 +0000 (01:55 -0800)
committerJunio C Hamano <junkio@cox.net>
Sun, 18 Dec 2005 09:55:29 +0000 (01:55 -0800)
While we are at it, give fully spelled --keep to fetch-pack.
Also give --quiet in addition to -q to fetch-pack as well.

Signed-off-by: Junio C Hamano <junkio@cox.net>
clone-pack.c
fetch-pack.c

index 03dbc2ead6ebadf7f45b7f368cb0666f9bd767a5..f634431be1f6ba3fa518d987a227c33f19543fb6 100644 (file)
@@ -160,8 +160,6 @@ int main(int argc, char **argv)
                                exec = arg + 7;
                                continue;
                        }
-                       if (!strcmp("--keep", arg))
-                               continue;
                        usage(clone_pack_usage);
                }
                dest = arg;
index 2528053fa8140377b1efcd528fc34cd88c895cc8..d34f322477a9a072da3981c7ba49c87232ed8bc4 100644 (file)
@@ -416,11 +416,11 @@ int main(int argc, char **argv)
                                exec = arg + 7;
                                continue;
                        }
-                       if (!strcmp("-q", arg)) {
+                       if (!strcmp("--quiet", arg) || !strcmp("-q", arg)) {
                                quiet = 1;
                                continue;
                        }
-                       if (!strcmp("-k", arg)) {
+                       if (!strcmp("--keep", arg) || !strcmp("-k", arg)) {
                                keep_pack = 1;
                                continue;
                        }