GIT 如何忽略只有 char "tilde" 的目录
How do GIT ignore directory with only char "tilde"
我将 Selenium 与 Protractor 和 Cucumber 一起使用,为我的项目创建自动化测试.
这些项目在 GIT 上进行了版本控制,测试文件的特定配置创建了一个仅以字符“波浪号”命名的文件夹。
我尝试修改根目录下的忽略文件 .gitignore " 在名称上,但 GIT 不会忽略该目录和她的文件。
我如何强制 GIT 忽略目录?
忽略~
或~/
:
$ git status --short
?? ~/
$ echo \~/ >>.gitignore
$ git status --short
M .gitignore
我将 Selenium 与 Protractor 和 Cucumber 一起使用,为我的项目创建自动化测试. 这些项目在 GIT 上进行了版本控制,测试文件的特定配置创建了一个仅以字符“波浪号”命名的文件夹。
我尝试修改根目录下的忽略文件 .gitignore " 在名称上,但 GIT 不会忽略该目录和她的文件。
我如何强制 GIT 忽略目录?
忽略~
或~/
:
$ git status --short
?? ~/
$ echo \~/ >>.gitignore
$ git status --short
M .gitignore