Skip to content

Instantly share code, notes, and snippets.

@AndrewBarba
Created April 14, 2015 15:17
Show Gist options
  • Save AndrewBarba/68d0c9e590832ace625c to your computer and use it in GitHub Desktop.
Save AndrewBarba/68d0c9e590832ace625c to your computer and use it in GitHub Desktop.
Make Xcode (with Cocoapods) faster by cleaning Pods, workspaces, and derived data folders
xcode-fast:
rm -rf Pods
rm -rf *.lock
rm -rf *.xcworkspace
rm -rf ~/Library/Caches/com.apple.dt.Xcode/*
rm -rf ~/Library/Developer/Xcode/DerivedData/*
pod install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment