代码之家  ›  专栏  ›  技术社区  ›  Dhrumil Shah

从TFVC for Visual Studio代码中排除的更改中删除文件/目录的方法

  •  3
  • Dhrumil Shah  · 技术社区  · 6 年前

    是否有任何方法可以从TFVC for Visual Studio代码中排除的更改中删除文件/目录。我在Visual Studio代码中配置了Team Foundation Server,加载时间太长,因为每次它都会检查文件夹中所有文件的更改 node\u模块 , dist公司 . 我发现它可以检测超过4K的文件。我必须删除这些目录。

    1 回复  |  直到 6 年前
        1
  •  0
  •   Cece Dong - MSFT    6 年前

    尝试添加 files.exclude 在工作区设置中:

    1. 转到文件(>);首选项(>);设置

    2. 添加 files.exclude settings.json

    例如:

     "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/CVS": true,
        "**/.DS_Store": true
      },
    

    您可以参考以下案例:

    How do I hide certain files from the sidebar in Visual Studio Code?

    How can I exclude a directory from Visual Studio Code "Explore" tab?