revert "checkout: introduce checkout.overlayMode config"
authorThomas Gummerer <t.gummerer@gmail.com>
Mon, 4 Feb 2019 21:13:16 +0000 (21:13 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 4 Feb 2019 21:30:14 +0000 (13:30 -0800)
This reverts 1495ff7da5 ("checkout: introduce checkout.overlayMode
config", 2019-01-08) and thus removes the checkout.overlayMode config
option.

The option was originally introduced to give users the option to make
the new no-overlay behaviour the default. However users may be using
'git checkout' in scripts, even though it is porcelain. Users setting
the option to false may actually end up accidentally breaking scripts.

With the introduction of a new subcommand that will make the behaviour
the default, the config option will not be needed anymore anyway.
Revert the commit and remove the config option, so we don't risk
breaking scripts.

Suggested-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Thomas Gummerer <t.gummerer@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config/checkout.txt
builtin/checkout.c
t/t2025-checkout-no-overlay.sh
index 73380a8d862d37f2df65b5b9ff667f72392165aa..c4118fa1968711c9f5e6c491913a63c86d5ea20c 100644 (file)
@@ -21,10 +21,3 @@ checkout.optimizeNewBranch::
        will not update the skip-worktree bit in the index nor add/remove
        files in the working directory to reflect the current sparse checkout
        settings nor will it show the local changes.
-
-checkout.overlayMode::
-       In the default overlay mode, `git checkout` never
-       removes files from the index or the working tree.  When
-       setting `checkout.overlayMode` to false, files that appear in
-       the index and working tree, but not in <tree-ish> are removed,
-       to make them match <tree-ish> exactly.
index b5dfc45736e45863f7ed798eca817212547e26b5..0c5fe948ef58901870949532b1a4bfc2b1870452 100644 (file)
@@ -1019,19 +1019,13 @@ static int switch_branches(const struct checkout_opts *opts,
 
 static int git_checkout_config(const char *var, const char *value, void *cb)
 {
-       struct checkout_opts *opts = cb;
-
        if (!strcmp(var, "checkout.optimizenewbranch")) {
                checkout_optimize_new_branch = git_config_bool(var, value);
                return 0;
        }
 
-       if (!strcmp(var, "checkout.overlaymode")) {
-               opts->overlay_mode = git_config_bool(var, value);
-               return 0;
-       }
-
        if (!strcmp(var, "diff.ignoresubmodules")) {
+               struct checkout_opts *opts = cb;
                handle_ignore_submodules_arg(&opts->diff_options, value);
                return 0;
        }
index a4912e35cbe3aad886b99859100c762ac0a974af..76330cb5ab79ab0ddfd97e0c06a8f4fb3a74d6c6 100755 (executable)
@@ -44,14 +44,4 @@ test_expect_success '--no-overlay --theirs with D/F conflict deletes file' '
        test_path_is_missing file1
 '
 
-test_expect_success 'checkout with checkout.overlayMode=false deletes files not in <tree-ish>' '
-       >file &&
-       mkdir dir &&
-       >dir/file1 &&
-       git add file dir/file1 &&
-       git -c checkout.overlayMode=false checkout HEAD -- file &&
-       test_path_is_missing file &&
-       test_path_is_file dir/file1
-'
-
 test_done