Merge branch 'jc/warn-pathless-add-finishing-touches'
authorJunio C Hamano <gitster@pobox.com>
Fri, 26 Apr 2013 22:17:48 +0000 (15:17 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 26 Apr 2013 22:17:48 +0000 (15:17 -0700)
* jc/warn-pathless-add-finishing-touches:
git add: avoid "-u/-A without pathspec" warning on stat-dirty paths

1  2 
builtin/add.c
diff --combined builtin/add.c
index d4b40f2b7a9dbdabcb0133d84b29d8ab281d1baf,44db04aa1037011a9289651eb6b76565a094e7e1..63df5f6938c8ab7f2355868e5c1a3affbf67fe7e
@@@ -28,9 -28,6 +28,9 @@@ struct update_callback_data 
        int add_errors;
        const char *implicit_dot;
        size_t implicit_dot_len;
 +
 +      /* only needed for 2.0 transition preparation */
 +      int warn_add_would_remove;
  };
  
  static const char *option_with_implicit_dot;
@@@ -96,24 -93,6 +96,24 @@@ static int fix_unmerged_status(struct d
                return DIFF_STATUS_MODIFIED;
  }
  
 +static const char *add_would_remove_warning = N_(
 +      "You ran 'git add' with neither '-A (--all)' or '--no-all', whose\n"
 +"behaviour will change in Git 2.0 with respect to paths you removed from\n"
 +"your working tree. Paths like '%s' that are\n"
 +"removed are ignored with this version of Git.\n"
 +"\n"
 +"* 'git add --no-all <pathspec>', which is the current default, ignores\n"
 +"  paths you removed from your working tree.\n"
 +"\n"
 +"* 'git add --all <pathspec>' will let you also record the removals.\n"
 +"\n"
 +"Run 'git status' to check the paths you removed from your working tree.\n");
 +
 +static void warn_add_would_remove(const char *path)
 +{
 +      warning(_(add_would_remove_warning), path);
 +}
 +
  static void update_callback(struct diff_queue_struct *q,
                            struct diff_options *opt, void *cbdata)
  {
                        }
                        break;
                case DIFF_STATUS_DELETED:
 +                      if (data->warn_add_would_remove) {
 +                              warn_add_would_remove(path);
 +                              data->warn_add_would_remove = 0;
 +                      }
                        if (data->flags & ADD_CACHE_IGNORE_REMOVAL)
                                break;
                        if (!(data->flags & ADD_CACHE_PRETEND))
        }
  }
  
 -int add_files_to_cache(const char *prefix, const char **pathspec, int flags)
 +static void update_files_in_cache(const char *prefix, const char **pathspec,
 +                                struct update_callback_data *data)
  {
 -      struct update_callback_data data;
        struct rev_info rev;
  
 -      memset(&data, 0, sizeof(data));
 -      data.flags = flags & ~ADD_CACHE_IMPLICIT_DOT;
 -      if ((flags & ADD_CACHE_IMPLICIT_DOT) && prefix) {
 -              /*
 -               * Check for modified files throughout the worktree so
 -               * update_callback has a chance to warn about changes
 -               * outside the cwd.
 -               */
 -              data.implicit_dot = prefix;
 -              data.implicit_dot_len = strlen(prefix);
 -              pathspec = NULL;
 -      }
 -
        init_revisions(&rev, prefix);
        setup_revisions(0, NULL, &rev, NULL);
        init_pathspec(&rev.prune_data, pathspec);
        rev.diffopt.output_format = DIFF_FORMAT_CALLBACK;
        rev.diffopt.format_callback = update_callback;
 -      rev.diffopt.format_callback_data = &data;
 +      rev.diffopt.format_callback_data = data;
        rev.max_count = 0; /* do not compare unmerged paths with stage #2 */
        run_diff_files(&rev, DIFF_RACY_IS_MODIFIED);
 +}
 +
 +int add_files_to_cache(const char *prefix, const char **pathspec, int flags)
 +{
 +      struct update_callback_data data;
 +
 +      memset(&data, 0, sizeof(data));
 +      data.flags = flags;
 +      update_files_in_cache(prefix, pathspec, &data);
        return !!data.add_errors;
  }
  
@@@ -375,27 -354,23 +375,27 @@@ static struct lock_file lock_file
  static const char ignore_error[] =
  N_("The following paths are ignored by one of your .gitignore files:\n");
  
 -static int verbose = 0, show_only = 0, ignored_too = 0, refresh_only = 0;
 -static int ignore_add_errors, addremove, intent_to_add, ignore_missing = 0;
 +static int verbose, show_only, ignored_too, refresh_only;
 +static int ignore_add_errors, intent_to_add, ignore_missing;
 +
 +#define ADDREMOVE_DEFAULT 0 /* Change to 1 in Git 2.0 */
 +static int addremove = ADDREMOVE_DEFAULT;
 +static int addremove_explicit = -1; /* unspecified */
  
  static struct option builtin_add_options[] = {
        OPT__DRY_RUN(&show_only, N_("dry run")),
        OPT__VERBOSE(&verbose, N_("be verbose")),
        OPT_GROUP(""),
 -      OPT_BOOLEAN('i', "interactive", &add_interactive, N_("interactive picking")),
 -      OPT_BOOLEAN('p', "patch", &patch_interactive, N_("select hunks interactively")),
 -      OPT_BOOLEAN('e', "edit", &edit_interactive, N_("edit current diff and apply")),
 +      OPT_BOOL('i', "interactive", &add_interactive, N_("interactive picking")),
 +      OPT_BOOL('p', "patch", &patch_interactive, N_("select hunks interactively")),
 +      OPT_BOOL('e', "edit", &edit_interactive, N_("edit current diff and apply")),
        OPT__FORCE(&ignored_too, N_("allow adding otherwise ignored files")),
 -      OPT_BOOLEAN('u', "update", &take_worktree_changes, N_("update tracked files")),
 -      OPT_BOOLEAN('N', "intent-to-add", &intent_to_add, N_("record only the fact that the path will be added later")),
 -      OPT_BOOLEAN('A', "all", &addremove, N_("add changes from all tracked and untracked files")),
 -      OPT_BOOLEAN( 0 , "refresh", &refresh_only, N_("don't add, only refresh the index")),
 -      OPT_BOOLEAN( 0 , "ignore-errors", &ignore_add_errors, N_("just skip files which cannot be added because of errors")),
 -      OPT_BOOLEAN( 0 , "ignore-missing", &ignore_missing, N_("check if - even missing - files are ignored in dry run")),
 +      OPT_BOOL('u', "update", &take_worktree_changes, N_("update tracked files")),
 +      OPT_BOOL('N', "intent-to-add", &intent_to_add, N_("record only the fact that the path will be added later")),
 +      OPT_BOOL('A', "all", &addremove_explicit, N_("add changes from all tracked and untracked files")),
 +      OPT_BOOL( 0 , "refresh", &refresh_only, N_("don't add, only refresh the index")),
 +      OPT_BOOL( 0 , "ignore-errors", &ignore_add_errors, N_("just skip files which cannot be added because of errors")),
 +      OPT_BOOL( 0 , "ignore-missing", &ignore_missing, N_("check if - even missing - files are ignored in dry run")),
        OPT_END(),
  };
  
@@@ -441,7 -416,6 +441,7 @@@ int cmd_add(int argc, const char **argv
        int require_pathspec;
        char *seen = NULL;
        int implicit_dot = 0;
 +      struct update_callback_data update_data;
  
        git_config(add_config, NULL);
  
        argc--;
        argv++;
  
 +      if (0 <= addremove_explicit)
 +              addremove = addremove_explicit;
 +      else if (take_worktree_changes && ADDREMOVE_DEFAULT)
 +              addremove = 0; /* "-u" was given but not "-A" */
 +
        if (addremove && take_worktree_changes)
                die(_("-A and -u are mutually incompatible"));
 +
 +      /*
 +       * Warn when "git add pathspec..." was given without "-u" or "-A"
 +       * and pathspec... covers a removed path.
 +       */
 +      memset(&update_data, 0, sizeof(update_data));
 +      if (!take_worktree_changes && addremove_explicit < 0)
 +              update_data.warn_add_would_remove = 1;
 +
 +      if (!take_worktree_changes && addremove_explicit < 0 && argc)
 +              /*
 +               * Turn "git add pathspec..." to "git add -A pathspec..."
 +               * in Git 2.0 but not yet
 +               */
 +              ; /* addremove = 1; */
 +
        if (!show_only && ignore_missing)
                die(_("Option --ignore-missing can only be used together with --dry-run"));
        if (addremove) {
                refresh(verbose, pathspec);
                goto finish;
        }
+       if (implicit_dot && prefix)
+               refresh_cache(REFRESH_QUIET);
  
        if (pathspec) {
                int i;
 -              struct path_exclude_check check;
  
 -              path_exclude_check_init(&check, &dir);
                if (!seen)
                        seen = find_pathspecs_matching_against_index(pathspec);
                for (i = 0; pathspec[i]; i++) {
                            && !file_exists(pathspec[i])) {
                                if (ignore_missing) {
                                        int dtype = DT_UNKNOWN;
 -                                      if (is_path_excluded(&check, pathspec[i], -1, &dtype))
 +                                      if (is_excluded(&dir, pathspec[i], &dtype))
                                                dir_add_ignored(&dir, pathspec[i], strlen(pathspec[i]));
                                } else
                                        die(_("pathspec '%s' did not match any files"),
                        }
                }
                free(seen);
 -              path_exclude_check_clear(&check);
        }
  
        plug_bulk_checkin();
  
 -      exit_status |= add_files_to_cache(prefix, pathspec, flags);
 +      if ((flags & ADD_CACHE_IMPLICIT_DOT) && prefix) {
 +              /*
 +               * Check for modified files throughout the worktree so
 +               * update_callback has a chance to warn about changes
 +               * outside the cwd.
 +               */
 +              update_data.implicit_dot = prefix;
 +              update_data.implicit_dot_len = strlen(prefix);
 +              pathspec = NULL;
 +      }
 +      update_data.flags = flags & ~ADD_CACHE_IMPLICIT_DOT;
 +      update_files_in_cache(prefix, pathspec, &update_data);
  
 +      exit_status |= !!update_data.add_errors;
        if (add_new_files)
                exit_status |= add_files(&dir, flags);