Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 340 Bytes

File metadata and controls

20 lines (14 loc) · 340 Bytes

Git Conflict

Back

# During merge
# To checkout your own version 
git checkout --ours -- <filename>

# To checkout their version
git checkout --theirs -- <filename>

# During rebase
# To checkout your own version 
git checkout --theirs -- <filename>

# To checkout their version
git checkout --ours -- <filename>