Created
December 11, 2015 14:32
-
-
Save bogdanbolchis/fb09538e00f1ca767fd6 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
# Remove Derived Data | |
rm -rf ~/Library/Developer/Xcode/DerivedData | |
rm -frd ~/Library/Caches/com.apple.dt.Xcode/* | |
# Open Gitup at the project’s path | |
open -a GitUp “$XcodeProjectPath” | |
# Stash & Pull & Pop, and show results in TextEdit | |
exec &>/var/tmp/log.txt | |
git stash && git pull && git stash pop | |
open -a TextEdit /var/tmp/log.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment