每次更換新的Mac電腦,又要重新設置開發(fā)環(huán)境,現(xiàn)在把重復性的設置記錄下,方便日后復制粘貼
設置隱藏文件
// 顯示隱藏文件
defaults write com.apple.finder AppleShowAllFiles -boolean true
killall Finder
// 不顯示隱藏文件
defaults write com.apple.finder AppleShowAllFiles -boolean false
killall Finder
設置Mac 可以安裝任意來源軟件
sudo spctl --master-disable
gif錄屏軟件
LICEcap http://www.pc6.com/mac/135257.html
安裝cocapods
sudo gem install -n /usr/local/bin cocoapods -v 1.8.3
設置本機公鑰,用于git驗證:
生成公鑰
ssh-keygen -o -t rsa -b 4096 -C "yannchee@163.com"
拷貝公鑰到剪貼板
pbcopy < ~/.ssh/id_rsa.pub