我收到错误说:
Package Control
Error executing: /usr/bin/git symbolic-ref -q HEAD
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
VCS-based packages can be ignored with the "ignore_vcs_packages" setting
每次我开始我的崇高,我如何使用ignore_vcs_packages?如最后一行错误消息中所述。
答案 0 :(得分:1)
选择Sublime Text > Preferences > Package Settings > Package Control > Settings - User
以打开Package Control
设置。
在该文件中,添加设置:
"ignore_vcs_packages": true
配置文件是JSON文件,因此请确保所有设置都以逗号分隔。
如果您只想忽略某些包,则可以将此设置设置为包名称数组,或者忽略所有包的布尔值true
。既然你的问题是你没有安装git,你可能想要使用布尔版本。
您可以通过安装XCode命令行工具来修复基础错误,这将为您提供git命令。请参阅示例this question。