forked from git-for-windows/git
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sparse-checkout: update files with a modify/delete conflict
When using the sparse-checkout feature, the file might not be on disk because the skip-worktree bit is on. Signed-off-by: Kevin Willford <[email protected]>
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/sh | ||
|
||
test_description='merge can handle sparse-checkout' | ||
|
||
. ./test-lib.sh | ||
|
||
# merges with conflicts | ||
|
||
test_expect_success 'setup' ' | ||
git branch -M main && | ||
test_commit a && | ||
test_commit file && | ||
git checkout -b delete-file && | ||
git rm file.t && | ||
test_tick && | ||
git commit -m "remove file" && | ||
git checkout main && | ||
test_commit modify file.t changed | ||
' | ||
|
||
test_expect_success 'merge conflict deleted file and modified' ' | ||
echo "/a.t" >.git/info/sparse-checkout && | ||
test_config core.sparsecheckout true && | ||
git checkout -f && | ||
test_path_is_missing file.t && | ||
test_must_fail git merge delete-file && | ||
test_path_is_file file.t && | ||
test "changed" = "$(cat file.t)" | ||
' | ||
|
||
test_done |