X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=prune-packed.c;h=5306e8e5ef411bfa7e6bcf4ba0639e640592818b;hb=edde7a8b5324d88f07fcb8204da313c19b4988fa;hp=41ee2a73bc325dd35831431ddfc176c1a19397df;hpb=98e031f0bb6e857c684e6db24d03d22cfc1a532a;p=git.git diff --git a/prune-packed.c b/prune-packed.c index 41ee2a73..5306e8e5 100644 --- a/prune-packed.c +++ b/prune-packed.c @@ -1,6 +1,9 @@ #include "cache.h" -static const char prune_packed_usage[] = "git-prune-packed: usage: git-prune-packed"; +static const char prune_packed_usage[] = +"git-prune-packed [-n]"; + +static int dryrun; static void prune_dir(int i, DIR *dir, char *pathname, int len) { @@ -18,7 +21,9 @@ static void prune_dir(int i, DIR *dir, char *pathname, int len) if (!has_sha1_pack(sha1)) continue; memcpy(pathname + len, de->d_name, 38); - if (unlink(pathname) < 0) + if (dryrun) + printf("rm -f %s\n", pathname); + else if (unlink(pathname) < 0) error("unable to unlink %s", pathname); } } @@ -55,8 +60,11 @@ int main(int argc, char **argv) const char *arg = argv[i]; if (*arg == '-') { - /* Handle flags here .. */ - usage(prune_packed_usage); + if (!strcmp(arg, "-n")) + dryrun = 1; + else + usage(prune_packed_usage); + continue; } /* Handle arguments here .. */ usage(prune_packed_usage);