Created
June 27, 2014 18:04
-
-
Save cassler/ac32ba5ac366ec299599 to your computer and use it in GitHub Desktop.
Fix iTerm + Git on Yosemite
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
| /** | |
| * Type the following commands into terminal and start a new session | |
| * this will fix any issues with Xcode not being able to git-pull in iTerm + ZSH | |
| **/ | |
| cd /Applications/iTerm.app/Contents/MacOS | |
| mv iTerm iTerm-bin | |
| cat > iTerm <<EOF | |
| #!/bin/sh | |
| unset PATH | |
| \${0}-bin | |
| EOF | |
| chmod +x iTerm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment