本文記錄使用MacOS及相關(guān)軟件時(shí)遇到的一些問(wèn)題及其解決方法。
- 1.Mac應(yīng)用程序軟件不出現(xiàn)在Launchpad里面
通過(guò)非AppStore安裝的第三方應(yīng)用,安裝后沒有出現(xiàn)在LaunchPad里,茶道一下解決方法,在終端執(zhí)行如下兩行命令即可:
rm ~/Library/Application\ Support/Dock/*.db
killall Dock
但我執(zhí)行后并沒有什么效果沒有什么效果,嘗試執(zhí)行如下兩行命令最終解決:
defaults write com.apple.dock ResetLaunchPad -bool true
killall Dock
- 2.Parallels Desktop喚起時(shí)黑屏
喚起Win10黑屏,嘗試 重啟啟動(dòng) 后依然黑屏,可選擇重置。

- 3.git push error: unable to rewind rpc post data - try increasing http.postBuffer
error: unable to rewind rpc post data - try increasing http.postBuffer
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 60
fatal: The remote end hung up unexpectedly 14.00 KiB/s
大概意思是http.postBuffer太小,需要設(shè)置更大的值,應(yīng)該是我們項(xiàng)目中用到的第三方靜態(tài)庫(kù)有400多MB大小的單個(gè).a文件。
執(zhí)行git config --global http.postBuffer 524288000命令,將http.postBuffer設(shè)置為500MB大小后,可以正常push操作了。
git config --global http.postBuffer 524288000
更多內(nèi)容,后續(xù)補(bǔ)充。