美文网首页
2019-04-03 疑难杂症解决方案

2019-04-03 疑难杂症解决方案

作者: 张公子在这等你 | 来源:发表于2019-04-03 09:48 被阅读0次

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「进程号」

相关文章

网友评论

      本文标题:2019-04-03 疑难杂症解决方案

      本文链接:https://www.haomeiwen.com/subject/chqabqtx.html