[PATCH] ssh-push: Don't add '/' to pathname
[git.git] / diff-stages.c
index 0090ac0..4b87c8e 100644 (file)
@@ -13,13 +13,52 @@ static const char *pickaxe = NULL;
 static int pickaxe_opts = 0;
 static int diff_break_opt = -1;
 static const char *orderfile = NULL;
+static const char *diff_filter = NULL;
 
 static char *diff_stages_usage =
 "git-diff-stages [-p] [-r] [-z] [-M] [-C] [-R] [-S<string>] [-O<orderfile>] <stage1> <stage2> [<path>...]";
 
+static void diff_stages(int stage1, int stage2)
+{
+       int i = 0;
+       while (i < active_nr) {
+               struct cache_entry *ce, *stages[4] = { NULL, };
+               struct cache_entry *one, *two;
+               const char *name;
+               int len;
+               ce = active_cache[i];
+               len = ce_namelen(ce);
+               name = ce->name;
+               for (;;) {
+                       int stage = ce_stage(ce);
+                       stages[stage] = ce;
+                       if (active_nr <= ++i)
+                               break;
+                       ce = active_cache[i];
+                       if (ce_namelen(ce) != len ||
+                           memcmp(name, ce->name, len))
+                               break;
+               }
+               one = stages[stage1];
+               two = stages[stage2];
+               if (!one && !two)
+                       continue;
+               if (!one)
+                       diff_addremove('+', ntohl(two->ce_mode),
+                                      two->sha1, name, NULL);
+               else if (!two)
+                       diff_addremove('-', ntohl(one->ce_mode),
+                                      one->sha1, name, NULL);
+               else if (memcmp(one->sha1, two->sha1, 20) ||
+                        (one->ce_mode != two->ce_mode))
+                        diff_change(ntohl(one->ce_mode), ntohl(two->ce_mode),
+                                    one->sha1, two->sha1, name, NULL);
+       }
+}
+
 int main(int ac, const char **av)
 {
-       int stage1, stage2, i;
+       int stage1, stage2;
 
        read_cache();
        while (1 < ac && av[1][0] == '-') {
@@ -50,6 +89,8 @@ int main(int ac, const char **av)
                        pickaxe = arg + 2;
                else if (!strncmp(arg, "-O", 2))
                        orderfile = arg + 2;
+               else if (!strncmp(arg, "--diff-filter=", 14))
+                       diff_filter = arg + 14;
                else if (!strcmp(arg, "--pickaxe-all"))
                        pickaxe_opts = DIFF_PICKAXE_ALL;
                else
@@ -67,46 +108,14 @@ int main(int ac, const char **av)
        av += 3; /* The rest from av[0] are for paths restriction. */
        diff_setup(diff_setup_opt);
 
-       i = 0;
-       while (i < active_nr) {
-               struct cache_entry *ce, *stages[4] = { NULL, };
-               struct cache_entry *one, *two;
-               const char *name;
-               int len;
-               ce = active_cache[i];
-               len = ce_namelen(ce);
-               name = ce->name;
-               for (;;) {
-                       int stage = ce_stage(ce);
-                       stages[stage] = ce;
-                       if (active_nr <= ++i)
-                               break;
-                       ce = active_cache[i];
-                       if (ce_namelen(ce) != len ||
-                           memcmp(name, ce->name, len))
-                               break;
-               }
-               one = stages[stage1];
-               two = stages[stage2];
-               if (!one && !two)
-                       continue;
-               if (!one)
-                       diff_addremove('+', ntohl(two->ce_mode),
-                                      two->sha1, name, NULL);
-               else if (!two)
-                       diff_addremove('-', ntohl(one->ce_mode),
-                                      one->sha1, name, NULL);
-               else if (memcmp(one->sha1, two->sha1, 20) ||
-                        (one->ce_mode != two->ce_mode))
-                        diff_change(ntohl(one->ce_mode), ntohl(two->ce_mode),
-                                    one->sha1, two->sha1, name, NULL);
-       }
+       diff_stages(stage1, stage2);
 
        diffcore_std(av,
                     detect_rename, diff_score_opt,
                     pickaxe, pickaxe_opts,
                     diff_break_opt,
-                    orderfile);
-       diff_flush(diff_output_format, 1);
+                    orderfile,
+                    diff_filter);
+       diff_flush(diff_output_format);
        return 0;
 }