Visual Studio Code教程

其他:

1. 如何切断项目和github的联系:

    在项目setting.json


    中编辑页右侧的User settings中加入以下几行代码即可。

// Is git enabled
"git.enabled": false,

// Path to the git executable
"git.path": null,

// Whether auto fetching is enabled.
"git.autofetch": false,

2. 如何更改VS code代码编辑界面的颜色主题:

    Ctrl + K  + Ctrl +T


猜你喜欢

转载自blog.csdn.net/oliver_hong/article/details/80565986