尝试过 files.exclude 和 files.watchexclude 添加**/.vscode
都没效果。
具体情况:我的 vscode 有插件有时会创建一个 settings.json 文件,会在 source control 里显示。
1
9 350 天前 1
在 .gitignore 写入
.vscode/ |
2
xiaojun996 350 天前
1. 想要在 vscode 的 Explorer 隐藏,需要在当前 vscode 打开的 root 下添加 .vscode/settings.json 文件,并在里面加上:
```json { "files.exclude": { ".vscode": true } } ``` 2. 想要在 vscode 的 Source Control 里看不到,其实就是在 .gitignore 里添加 .vscode |
3
nyxsonsleep OP @9 不希望在.gitignore 中加入这种特定 ide 的文件。我记得 idea 就单独有自己的管理不用插入到.gitignore 中
|
4
nyxsonsleep OP @xiaojun996 看来是没其他方法了。
|
5
deorth 349 天前 via Android
不支持
|
6
9 348 天前 1
@nyxsonsleep 额,有洁癖么。.gitignore 就是做这个事情的呀,随便看下 GitHub 上带 .gitignore 的都是这样写的
不仅 ide 相关的文件,操作系统相关的文件(*.DS_Store ,Thumbs.db )也得在这里排除掉 |
7
fpure 291 天前
@nyxsonsleep 你彷佛对.gitignore 的用法有什么误解,特定 ide 的文件就应该写进.gitignore 里面
|