Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. How to setup UnityYAMLMerge.exe on Git for Windows
  2. add "C:\Program Files\Unity\Editor\Data\Tools\" to your path in Windows
  3.  
  4. git config --global merge.tool unityyamlmerge
  5. git config --global mergetool.unityyamlmerge.cmd 'unityyamlmerge.exe merge -p "$(cygpath -wla $BASE)" "$(cygpath -wla $LOCAL)" "$(cygpath -wla $REMOTE)" "$(cygpath -wla $MERGED)"'
  6. git config --global mergetool.unityyamlmerge.trustExitCode false
  7.  
  8. This makes merging .scene files a breeze.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement