Skip to content

Instantly share code, notes, and snippets.

@rambabusaravanan
rambabusaravanan / .gitconfig
Last active May 30, 2024 06:08
Git Diff and Merge Tool - IntelliJ IDEA
# Linux
# add the following to "~/.gitconfig" file
[merge]
tool = intellij
[mergetool "intellij"]
cmd = /usr/local/bin/idea merge $(cd $(dirname "$LOCAL") && pwd)/$(basename "$LOCAL") $(cd $(dirname "$REMOTE") && pwd)/$(basename "$REMOTE") $(cd $(dirname "$BASE") && pwd)/$(basename "$BASE") $(cd $(dirname "$MERGED") && pwd)/$(basename "$MERGED")
trustExitCode = true
[diff]
@esperancaJS
esperancaJS / gist:e09260d73dfe242859dc
Last active March 10, 2023 18:22
git merge –strategy=theirs (closest we can get)

##git merge –strategy=theirs (closest we can get)

get a temp copy of the branch you want to 'clone' into another

git checkout -b tmp <branch to copy from>

merge our version of the branch into the upstream with ours strategy

git merge --strategy=ours