1- 针对于git每次都需要输入用户名密码的解决方案
执行一下 这个命令:
git config --global credential.helper store
然后,下次再输入一次 账号密码 就可以了。
**2、运行vapor xcode时报错:
Could not generate Xcode project: error: terminated(72): xcrun --sdk macosx --find xctest output:
执行:
解决方案:在终端运行sudo xcode-select -s /Applications/Xcode.app/Contents/Developer。
关于xcode-select 可以查看 man xcode-select
**3、查找某个运行的进程,并将其杀掉
ps -ef | grep elastic
kill -9 pid「进程号」
网友评论