How to split file into ours and theirs on conflict
up vote
0
down vote
favorite
I there a way to get 2 copies of file where first will have remote content and the second with local content
git merge-conflict-resolution
add a comment |
up vote
0
down vote
favorite
I there a way to get 2 copies of file where first will have remote content and the second with local content
git merge-conflict-resolution
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I there a way to get 2 copies of file where first will have remote content and the second with local content
git merge-conflict-resolution
I there a way to get 2 copies of file where first will have remote content and the second with local content
git merge-conflict-resolution
git merge-conflict-resolution
edited Nov 11 at 8:18
Flimzy
36.6k96496
36.6k96496
asked Nov 11 at 6:53
Herrgott
175420
175420
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
3
down vote
I don't think that there is a git option to keep both versions of the file in two copies.
But you can easily acheive this goal with the following commands :
git merge the_branch
git checkout --theirs -- path/to/file ; mv path/to/file path/to/file.theirs
git checkout --ours -- path/to/file ; mv path/to/file path/to/file.ours
git checkout -m -- path/to/file
In the end you have three files :
file.theirs
, with their version;
file.ours
, with your version;
file
, with both versions and conflicts marks.
Upvoted, especially because if you do have line-ending or other (e.g., git-lfs) filters going on, this method works with those. (Thegit checkout-index
method does too, it's mostlygit show
that doesn't. Note thatgit mergetool
usesgit checkout-index
internally.)
– torek
Nov 11 at 9:12
add a comment |
up vote
1
down vote
TL;DR
Consider using git mergetool
(though I never do it this way myself), or git show
(I sometimes do this). Also consider setting merge.conflictStyle
to diff3
, which makes Git write, into the conflicted work-tree copy, the base version as well as the left and right side versions. I find that with this turned on, I almost never need to see the two inputs. (But only almost never.)
Long(ish)
In fact, the file is already present in all three versions, but they are all in the index, not in the work-tree. The trick is therefore to get them out of the index, where they're in the special Git-only format, into your work-tree where you can see and work on / with them.
Let's look briefly, yet in detail, at how git merge
works when there are conflicts. For conflicts to occur, we must have done something like this:
$ git checkout ours
Switched to branch 'ours'
$ git merge theirs
Git will have looked at the commit graph and found that ours
and theirs
have diverged, but have a common merge base commit:1
o--...--L <-- ours (HEAD)
/
...--o--B
o--...--R <-- theirs
Commit L is the left side or local or --ours
commit. Commit R is the right side or remote or --theirs
commit. Commit B here is the merge base. Git then did, in effect, two git diff
commands, one to find out what we changed since the merge base:
git diff --find-renames <hash-of-B> <hash-of-L> # what we changed
git diff --find-renames <hash-of-B> <hash-of-R> # what they changed
The merge then attempted to combine these two sets of changes, using the contents associated with commit B as the base for the combined changes. However, we changed some file, they changed the same file, and our changes collided with their changes, so that we got a merge conflict.
What Git has done, at this point, is to put all three copies of the file into the index, at nonzero staging slot numbers:
- Stage 1 contains the merge base: file B:P, where B is the base commit and P is the path name of the file (as found in that commit anyway—we might have renamed the file!).
- Stage 2 contains our version of the file: file L:P.
- Stage 3 contains their version of the file: file R:P.
The work-tree contains Git's attempt to merge the two sets of changes, with conflict markers. Note that this version is not the same as any of the three input versions! Some part(s) of the merge may already be resolved. The default style for conflicting changes is merge
, which shows only the left (B-vs-L) and right (B-vs-R) changes without showing you the section that was in B itself. In many cases that's enough, but when the changes are purely deletions, it's often very helpful to know what line(s) in B is / are being deleted, and that's not something you can just deduce. Setting the conflict style to diff3
makes Git record the B code section as well, in between the two change-sections.
1It's possible for there to be multiple merge base commits. In this case, Git defaults to constructing a new merge base commit by merging the merge bases. This process is a little bit messy, but fortunately it's rare, and even when it does happen, it rarely makes anything worse.
Extracting the three versions
You can extract any of the three versions using
git checkout-index
, although this command is a bit of a pain to use:
git checkout-index --all -- path/to/file
This writes all three to files with funky temporary names, which you then have to rename. (There are several variations on this theme but they're all a bit annoying.)
You can use
git mergetool
, which automatically extracts all three versions, then invokes your chosen merge tool command on all of them.
Or, you can manually extract one or both files. The method in DogEata's answer will work, but if you have no concerns over line-ending issues, this way is shorter:
git show :1:path/to/file > path/to/file.base
git show :2:path/to/file > path/to/file.ours
git show :3:path/to/file > path/to/file.theirs
This uses the
git show
command along with the gitrevisions syntax for accessing the index copies, showing them to standard output, and redirecting the output to new files.
Note that git add
writes to slot zero
Git knows that a merge is in progress, and has not yet been finished, in several ways, but the most important is that there are these files in slots 1, 2, and/or 3 for some path in the index. When you've figured out the correct contents for that path, and written them to that path in your work-tree, you run:
git add path/to/file
to copy the file back into the index, taking the normal-format work-tree copy and compressing in into the special Git-only format that goes in the index.
If the file were in the index at slot zero, the way it normally is, that would just overwrite the old index copy with the fixed-up work-tree version. When there are multiple copies of the file in the index using the higher numbered slots, git add
still writes to slot zero, but this time, it also removes the higher-numbered entries entirely. Now the file is resolved.
If you use git mergetool
, the git mergetool
command can automatically run git add
for you, hiding the extra step. Some people find this especially convenient.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
I don't think that there is a git option to keep both versions of the file in two copies.
But you can easily acheive this goal with the following commands :
git merge the_branch
git checkout --theirs -- path/to/file ; mv path/to/file path/to/file.theirs
git checkout --ours -- path/to/file ; mv path/to/file path/to/file.ours
git checkout -m -- path/to/file
In the end you have three files :
file.theirs
, with their version;
file.ours
, with your version;
file
, with both versions and conflicts marks.
Upvoted, especially because if you do have line-ending or other (e.g., git-lfs) filters going on, this method works with those. (Thegit checkout-index
method does too, it's mostlygit show
that doesn't. Note thatgit mergetool
usesgit checkout-index
internally.)
– torek
Nov 11 at 9:12
add a comment |
up vote
3
down vote
I don't think that there is a git option to keep both versions of the file in two copies.
But you can easily acheive this goal with the following commands :
git merge the_branch
git checkout --theirs -- path/to/file ; mv path/to/file path/to/file.theirs
git checkout --ours -- path/to/file ; mv path/to/file path/to/file.ours
git checkout -m -- path/to/file
In the end you have three files :
file.theirs
, with their version;
file.ours
, with your version;
file
, with both versions and conflicts marks.
Upvoted, especially because if you do have line-ending or other (e.g., git-lfs) filters going on, this method works with those. (Thegit checkout-index
method does too, it's mostlygit show
that doesn't. Note thatgit mergetool
usesgit checkout-index
internally.)
– torek
Nov 11 at 9:12
add a comment |
up vote
3
down vote
up vote
3
down vote
I don't think that there is a git option to keep both versions of the file in two copies.
But you can easily acheive this goal with the following commands :
git merge the_branch
git checkout --theirs -- path/to/file ; mv path/to/file path/to/file.theirs
git checkout --ours -- path/to/file ; mv path/to/file path/to/file.ours
git checkout -m -- path/to/file
In the end you have three files :
file.theirs
, with their version;
file.ours
, with your version;
file
, with both versions and conflicts marks.
I don't think that there is a git option to keep both versions of the file in two copies.
But you can easily acheive this goal with the following commands :
git merge the_branch
git checkout --theirs -- path/to/file ; mv path/to/file path/to/file.theirs
git checkout --ours -- path/to/file ; mv path/to/file path/to/file.ours
git checkout -m -- path/to/file
In the end you have three files :
file.theirs
, with their version;
file.ours
, with your version;
file
, with both versions and conflicts marks.
answered Nov 11 at 8:17
DogEata
56337
56337
Upvoted, especially because if you do have line-ending or other (e.g., git-lfs) filters going on, this method works with those. (Thegit checkout-index
method does too, it's mostlygit show
that doesn't. Note thatgit mergetool
usesgit checkout-index
internally.)
– torek
Nov 11 at 9:12
add a comment |
Upvoted, especially because if you do have line-ending or other (e.g., git-lfs) filters going on, this method works with those. (Thegit checkout-index
method does too, it's mostlygit show
that doesn't. Note thatgit mergetool
usesgit checkout-index
internally.)
– torek
Nov 11 at 9:12
Upvoted, especially because if you do have line-ending or other (e.g., git-lfs) filters going on, this method works with those. (The
git checkout-index
method does too, it's mostly git show
that doesn't. Note that git mergetool
uses git checkout-index
internally.)– torek
Nov 11 at 9:12
Upvoted, especially because if you do have line-ending or other (e.g., git-lfs) filters going on, this method works with those. (The
git checkout-index
method does too, it's mostly git show
that doesn't. Note that git mergetool
uses git checkout-index
internally.)– torek
Nov 11 at 9:12
add a comment |
up vote
1
down vote
TL;DR
Consider using git mergetool
(though I never do it this way myself), or git show
(I sometimes do this). Also consider setting merge.conflictStyle
to diff3
, which makes Git write, into the conflicted work-tree copy, the base version as well as the left and right side versions. I find that with this turned on, I almost never need to see the two inputs. (But only almost never.)
Long(ish)
In fact, the file is already present in all three versions, but they are all in the index, not in the work-tree. The trick is therefore to get them out of the index, where they're in the special Git-only format, into your work-tree where you can see and work on / with them.
Let's look briefly, yet in detail, at how git merge
works when there are conflicts. For conflicts to occur, we must have done something like this:
$ git checkout ours
Switched to branch 'ours'
$ git merge theirs
Git will have looked at the commit graph and found that ours
and theirs
have diverged, but have a common merge base commit:1
o--...--L <-- ours (HEAD)
/
...--o--B
o--...--R <-- theirs
Commit L is the left side or local or --ours
commit. Commit R is the right side or remote or --theirs
commit. Commit B here is the merge base. Git then did, in effect, two git diff
commands, one to find out what we changed since the merge base:
git diff --find-renames <hash-of-B> <hash-of-L> # what we changed
git diff --find-renames <hash-of-B> <hash-of-R> # what they changed
The merge then attempted to combine these two sets of changes, using the contents associated with commit B as the base for the combined changes. However, we changed some file, they changed the same file, and our changes collided with their changes, so that we got a merge conflict.
What Git has done, at this point, is to put all three copies of the file into the index, at nonzero staging slot numbers:
- Stage 1 contains the merge base: file B:P, where B is the base commit and P is the path name of the file (as found in that commit anyway—we might have renamed the file!).
- Stage 2 contains our version of the file: file L:P.
- Stage 3 contains their version of the file: file R:P.
The work-tree contains Git's attempt to merge the two sets of changes, with conflict markers. Note that this version is not the same as any of the three input versions! Some part(s) of the merge may already be resolved. The default style for conflicting changes is merge
, which shows only the left (B-vs-L) and right (B-vs-R) changes without showing you the section that was in B itself. In many cases that's enough, but when the changes are purely deletions, it's often very helpful to know what line(s) in B is / are being deleted, and that's not something you can just deduce. Setting the conflict style to diff3
makes Git record the B code section as well, in between the two change-sections.
1It's possible for there to be multiple merge base commits. In this case, Git defaults to constructing a new merge base commit by merging the merge bases. This process is a little bit messy, but fortunately it's rare, and even when it does happen, it rarely makes anything worse.
Extracting the three versions
You can extract any of the three versions using
git checkout-index
, although this command is a bit of a pain to use:
git checkout-index --all -- path/to/file
This writes all three to files with funky temporary names, which you then have to rename. (There are several variations on this theme but they're all a bit annoying.)
You can use
git mergetool
, which automatically extracts all three versions, then invokes your chosen merge tool command on all of them.
Or, you can manually extract one or both files. The method in DogEata's answer will work, but if you have no concerns over line-ending issues, this way is shorter:
git show :1:path/to/file > path/to/file.base
git show :2:path/to/file > path/to/file.ours
git show :3:path/to/file > path/to/file.theirs
This uses the
git show
command along with the gitrevisions syntax for accessing the index copies, showing them to standard output, and redirecting the output to new files.
Note that git add
writes to slot zero
Git knows that a merge is in progress, and has not yet been finished, in several ways, but the most important is that there are these files in slots 1, 2, and/or 3 for some path in the index. When you've figured out the correct contents for that path, and written them to that path in your work-tree, you run:
git add path/to/file
to copy the file back into the index, taking the normal-format work-tree copy and compressing in into the special Git-only format that goes in the index.
If the file were in the index at slot zero, the way it normally is, that would just overwrite the old index copy with the fixed-up work-tree version. When there are multiple copies of the file in the index using the higher numbered slots, git add
still writes to slot zero, but this time, it also removes the higher-numbered entries entirely. Now the file is resolved.
If you use git mergetool
, the git mergetool
command can automatically run git add
for you, hiding the extra step. Some people find this especially convenient.
add a comment |
up vote
1
down vote
TL;DR
Consider using git mergetool
(though I never do it this way myself), or git show
(I sometimes do this). Also consider setting merge.conflictStyle
to diff3
, which makes Git write, into the conflicted work-tree copy, the base version as well as the left and right side versions. I find that with this turned on, I almost never need to see the two inputs. (But only almost never.)
Long(ish)
In fact, the file is already present in all three versions, but they are all in the index, not in the work-tree. The trick is therefore to get them out of the index, where they're in the special Git-only format, into your work-tree where you can see and work on / with them.
Let's look briefly, yet in detail, at how git merge
works when there are conflicts. For conflicts to occur, we must have done something like this:
$ git checkout ours
Switched to branch 'ours'
$ git merge theirs
Git will have looked at the commit graph and found that ours
and theirs
have diverged, but have a common merge base commit:1
o--...--L <-- ours (HEAD)
/
...--o--B
o--...--R <-- theirs
Commit L is the left side or local or --ours
commit. Commit R is the right side or remote or --theirs
commit. Commit B here is the merge base. Git then did, in effect, two git diff
commands, one to find out what we changed since the merge base:
git diff --find-renames <hash-of-B> <hash-of-L> # what we changed
git diff --find-renames <hash-of-B> <hash-of-R> # what they changed
The merge then attempted to combine these two sets of changes, using the contents associated with commit B as the base for the combined changes. However, we changed some file, they changed the same file, and our changes collided with their changes, so that we got a merge conflict.
What Git has done, at this point, is to put all three copies of the file into the index, at nonzero staging slot numbers:
- Stage 1 contains the merge base: file B:P, where B is the base commit and P is the path name of the file (as found in that commit anyway—we might have renamed the file!).
- Stage 2 contains our version of the file: file L:P.
- Stage 3 contains their version of the file: file R:P.
The work-tree contains Git's attempt to merge the two sets of changes, with conflict markers. Note that this version is not the same as any of the three input versions! Some part(s) of the merge may already be resolved. The default style for conflicting changes is merge
, which shows only the left (B-vs-L) and right (B-vs-R) changes without showing you the section that was in B itself. In many cases that's enough, but when the changes are purely deletions, it's often very helpful to know what line(s) in B is / are being deleted, and that's not something you can just deduce. Setting the conflict style to diff3
makes Git record the B code section as well, in between the two change-sections.
1It's possible for there to be multiple merge base commits. In this case, Git defaults to constructing a new merge base commit by merging the merge bases. This process is a little bit messy, but fortunately it's rare, and even when it does happen, it rarely makes anything worse.
Extracting the three versions
You can extract any of the three versions using
git checkout-index
, although this command is a bit of a pain to use:
git checkout-index --all -- path/to/file
This writes all three to files with funky temporary names, which you then have to rename. (There are several variations on this theme but they're all a bit annoying.)
You can use
git mergetool
, which automatically extracts all three versions, then invokes your chosen merge tool command on all of them.
Or, you can manually extract one or both files. The method in DogEata's answer will work, but if you have no concerns over line-ending issues, this way is shorter:
git show :1:path/to/file > path/to/file.base
git show :2:path/to/file > path/to/file.ours
git show :3:path/to/file > path/to/file.theirs
This uses the
git show
command along with the gitrevisions syntax for accessing the index copies, showing them to standard output, and redirecting the output to new files.
Note that git add
writes to slot zero
Git knows that a merge is in progress, and has not yet been finished, in several ways, but the most important is that there are these files in slots 1, 2, and/or 3 for some path in the index. When you've figured out the correct contents for that path, and written them to that path in your work-tree, you run:
git add path/to/file
to copy the file back into the index, taking the normal-format work-tree copy and compressing in into the special Git-only format that goes in the index.
If the file were in the index at slot zero, the way it normally is, that would just overwrite the old index copy with the fixed-up work-tree version. When there are multiple copies of the file in the index using the higher numbered slots, git add
still writes to slot zero, but this time, it also removes the higher-numbered entries entirely. Now the file is resolved.
If you use git mergetool
, the git mergetool
command can automatically run git add
for you, hiding the extra step. Some people find this especially convenient.
add a comment |
up vote
1
down vote
up vote
1
down vote
TL;DR
Consider using git mergetool
(though I never do it this way myself), or git show
(I sometimes do this). Also consider setting merge.conflictStyle
to diff3
, which makes Git write, into the conflicted work-tree copy, the base version as well as the left and right side versions. I find that with this turned on, I almost never need to see the two inputs. (But only almost never.)
Long(ish)
In fact, the file is already present in all three versions, but they are all in the index, not in the work-tree. The trick is therefore to get them out of the index, where they're in the special Git-only format, into your work-tree where you can see and work on / with them.
Let's look briefly, yet in detail, at how git merge
works when there are conflicts. For conflicts to occur, we must have done something like this:
$ git checkout ours
Switched to branch 'ours'
$ git merge theirs
Git will have looked at the commit graph and found that ours
and theirs
have diverged, but have a common merge base commit:1
o--...--L <-- ours (HEAD)
/
...--o--B
o--...--R <-- theirs
Commit L is the left side or local or --ours
commit. Commit R is the right side or remote or --theirs
commit. Commit B here is the merge base. Git then did, in effect, two git diff
commands, one to find out what we changed since the merge base:
git diff --find-renames <hash-of-B> <hash-of-L> # what we changed
git diff --find-renames <hash-of-B> <hash-of-R> # what they changed
The merge then attempted to combine these two sets of changes, using the contents associated with commit B as the base for the combined changes. However, we changed some file, they changed the same file, and our changes collided with their changes, so that we got a merge conflict.
What Git has done, at this point, is to put all three copies of the file into the index, at nonzero staging slot numbers:
- Stage 1 contains the merge base: file B:P, where B is the base commit and P is the path name of the file (as found in that commit anyway—we might have renamed the file!).
- Stage 2 contains our version of the file: file L:P.
- Stage 3 contains their version of the file: file R:P.
The work-tree contains Git's attempt to merge the two sets of changes, with conflict markers. Note that this version is not the same as any of the three input versions! Some part(s) of the merge may already be resolved. The default style for conflicting changes is merge
, which shows only the left (B-vs-L) and right (B-vs-R) changes without showing you the section that was in B itself. In many cases that's enough, but when the changes are purely deletions, it's often very helpful to know what line(s) in B is / are being deleted, and that's not something you can just deduce. Setting the conflict style to diff3
makes Git record the B code section as well, in between the two change-sections.
1It's possible for there to be multiple merge base commits. In this case, Git defaults to constructing a new merge base commit by merging the merge bases. This process is a little bit messy, but fortunately it's rare, and even when it does happen, it rarely makes anything worse.
Extracting the three versions
You can extract any of the three versions using
git checkout-index
, although this command is a bit of a pain to use:
git checkout-index --all -- path/to/file
This writes all three to files with funky temporary names, which you then have to rename. (There are several variations on this theme but they're all a bit annoying.)
You can use
git mergetool
, which automatically extracts all three versions, then invokes your chosen merge tool command on all of them.
Or, you can manually extract one or both files. The method in DogEata's answer will work, but if you have no concerns over line-ending issues, this way is shorter:
git show :1:path/to/file > path/to/file.base
git show :2:path/to/file > path/to/file.ours
git show :3:path/to/file > path/to/file.theirs
This uses the
git show
command along with the gitrevisions syntax for accessing the index copies, showing them to standard output, and redirecting the output to new files.
Note that git add
writes to slot zero
Git knows that a merge is in progress, and has not yet been finished, in several ways, but the most important is that there are these files in slots 1, 2, and/or 3 for some path in the index. When you've figured out the correct contents for that path, and written them to that path in your work-tree, you run:
git add path/to/file
to copy the file back into the index, taking the normal-format work-tree copy and compressing in into the special Git-only format that goes in the index.
If the file were in the index at slot zero, the way it normally is, that would just overwrite the old index copy with the fixed-up work-tree version. When there are multiple copies of the file in the index using the higher numbered slots, git add
still writes to slot zero, but this time, it also removes the higher-numbered entries entirely. Now the file is resolved.
If you use git mergetool
, the git mergetool
command can automatically run git add
for you, hiding the extra step. Some people find this especially convenient.
TL;DR
Consider using git mergetool
(though I never do it this way myself), or git show
(I sometimes do this). Also consider setting merge.conflictStyle
to diff3
, which makes Git write, into the conflicted work-tree copy, the base version as well as the left and right side versions. I find that with this turned on, I almost never need to see the two inputs. (But only almost never.)
Long(ish)
In fact, the file is already present in all three versions, but they are all in the index, not in the work-tree. The trick is therefore to get them out of the index, where they're in the special Git-only format, into your work-tree where you can see and work on / with them.
Let's look briefly, yet in detail, at how git merge
works when there are conflicts. For conflicts to occur, we must have done something like this:
$ git checkout ours
Switched to branch 'ours'
$ git merge theirs
Git will have looked at the commit graph and found that ours
and theirs
have diverged, but have a common merge base commit:1
o--...--L <-- ours (HEAD)
/
...--o--B
o--...--R <-- theirs
Commit L is the left side or local or --ours
commit. Commit R is the right side or remote or --theirs
commit. Commit B here is the merge base. Git then did, in effect, two git diff
commands, one to find out what we changed since the merge base:
git diff --find-renames <hash-of-B> <hash-of-L> # what we changed
git diff --find-renames <hash-of-B> <hash-of-R> # what they changed
The merge then attempted to combine these two sets of changes, using the contents associated with commit B as the base for the combined changes. However, we changed some file, they changed the same file, and our changes collided with their changes, so that we got a merge conflict.
What Git has done, at this point, is to put all three copies of the file into the index, at nonzero staging slot numbers:
- Stage 1 contains the merge base: file B:P, where B is the base commit and P is the path name of the file (as found in that commit anyway—we might have renamed the file!).
- Stage 2 contains our version of the file: file L:P.
- Stage 3 contains their version of the file: file R:P.
The work-tree contains Git's attempt to merge the two sets of changes, with conflict markers. Note that this version is not the same as any of the three input versions! Some part(s) of the merge may already be resolved. The default style for conflicting changes is merge
, which shows only the left (B-vs-L) and right (B-vs-R) changes without showing you the section that was in B itself. In many cases that's enough, but when the changes are purely deletions, it's often very helpful to know what line(s) in B is / are being deleted, and that's not something you can just deduce. Setting the conflict style to diff3
makes Git record the B code section as well, in between the two change-sections.
1It's possible for there to be multiple merge base commits. In this case, Git defaults to constructing a new merge base commit by merging the merge bases. This process is a little bit messy, but fortunately it's rare, and even when it does happen, it rarely makes anything worse.
Extracting the three versions
You can extract any of the three versions using
git checkout-index
, although this command is a bit of a pain to use:
git checkout-index --all -- path/to/file
This writes all three to files with funky temporary names, which you then have to rename. (There are several variations on this theme but they're all a bit annoying.)
You can use
git mergetool
, which automatically extracts all three versions, then invokes your chosen merge tool command on all of them.
Or, you can manually extract one or both files. The method in DogEata's answer will work, but if you have no concerns over line-ending issues, this way is shorter:
git show :1:path/to/file > path/to/file.base
git show :2:path/to/file > path/to/file.ours
git show :3:path/to/file > path/to/file.theirs
This uses the
git show
command along with the gitrevisions syntax for accessing the index copies, showing them to standard output, and redirecting the output to new files.
Note that git add
writes to slot zero
Git knows that a merge is in progress, and has not yet been finished, in several ways, but the most important is that there are these files in slots 1, 2, and/or 3 for some path in the index. When you've figured out the correct contents for that path, and written them to that path in your work-tree, you run:
git add path/to/file
to copy the file back into the index, taking the normal-format work-tree copy and compressing in into the special Git-only format that goes in the index.
If the file were in the index at slot zero, the way it normally is, that would just overwrite the old index copy with the fixed-up work-tree version. When there are multiple copies of the file in the index using the higher numbered slots, git add
still writes to slot zero, but this time, it also removes the higher-numbered entries entirely. Now the file is resolved.
If you use git mergetool
, the git mergetool
command can automatically run git add
for you, hiding the extra step. Some people find this especially convenient.
answered Nov 11 at 9:10
torek
179k17229308
179k17229308
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53246498%2fhow-to-split-file-into-ours-and-theirs-on-conflict%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown