Last active
October 15, 2015 06:45
-
-
Save simonexmachina/8608764bfb56c4e244b0 to your computer and use it in GitHub Desktop.
mergepbx setup
This file contains hidden or 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
| # you can run this using: | |
| # curl -o- https://gist.githubusercontent.com/aexmachina/8608764bfb56c4e244b0/raw/e53953bfb97993059661daf623579763ccc95f03/mergepbx-setup.sh | bash | |
| set -o errexit # exit on most errors | |
| brew install mergepbx | |
| git config --global merge.mergepbx.name "XCode project files merger" | |
| git config --global merge.mergepbx.driver "mergepbx %O %A %B" | |
| git config --global core.attributesfile ~/.gitattributes | |
| echo '*.pbxproj merge=mergepbx' >> ~/.gitattributes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment