Created
August 29, 2016 16:41
-
-
Save ClintChil/71d149b117d688ef2d540267d30fd9cc to your computer and use it in GitHub Desktop.
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
How to setup UnityYAMLMerge.exe on Git for Windows | |
add "C:\Program Files\Unity\Editor\Data\Tools\" to your path in Windows | |
git config --global merge.tool unityyamlmerge | |
git config --global mergetool.unityyamlmerge.cmd 'unityyamlmerge.exe merge -p "$(cygpath -wla $BASE)" "$(cygpath -wla $LOCAL)" "$(cygpath -wla $REMOTE)" "$(cygpath -wla $MERGED)"' | |
git config --global mergetool.unityyamlmerge.trustExitCode false | |
This makes merging .scene files a breeze. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment