Git: solve conflicted files

Git: solve conflicted files

What's the simplest way to list conflicted files in Git?

1
2
3
4
5
6
# # Search for all conflicting files.
git diff --name-only --diff-filter=U --relative

# Search for all conflicting files.
grep -lr "<<<<<<< HEAD" ./*

Resolve easy/obvious conflicts

1
2
3
4
5
6
7
8
9
10
11
#At this point you may review each files. If solution is to accept local/our version, run:
git checkout --ours PATH/FILE

#If solution is to accept remote/other-branch version, run:
git checkout --theirs PATH/FILE

#If you have multiple files and you want to accept local/our version, run:
grep -lr '<<<<<<<' . | xargs git checkout --ours

#If you have multiple files and you want to accept remote/other-branch version, run:
grep -lr '<<<<<<<' . | xargs git checkout --theirs
1
2
$ git add sample.txt
$ git commit

Git: solve conflicted files
https://waipangsze.github.io/2023/05/07/Git-conflicts/
Author
wpsze
Posted on
May 7, 2023
Updated on
October 8, 2024
Licensed under