84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
.gitignore 如何仅忽略项目根目录下的 index.html 但不忽略子目录的 index.html
.gitignore
index.html
这样子写吗?
欢迎选择我的课程,让我们一起见证您的进步~~
/index.html will do. This involves the matching problem of gitignore. If it does not start with / (slash), git will match all index.html in the directory. After adding /, it will match according to the path
@老老哥 is right, the questioner should do exactly what he said!
./index.html
If your gitignore is also on the root (usually it is). You just need to add a line index.html in gitignore.
/index.html will do.
This involves the matching problem of gitignore. If it does not start with / (slash), git will match all index.html in the directory. After adding /, it will match according to the path
@老老哥 is right, the questioner should do exactly what he said!
./index.html
If your gitignore is also on the root (usually it is).
You just need to add a line index.html in gitignore.