1
yesmeck OP master* $ cat .gitignore
template/compiled/* !template/compiled/admin/ !template/compiled/index.html template/compiled/admin/* !template/compiled/admin/index.html 发现这样写是可以,但是应该不用这么复杂吧。。。。 |
2
coupgar 2012-01-06 15:44:50 +08:00
*/index.html 试试
|
3
yesmeck OP |
4
9hills 2012-01-06 16:44:08 +08:00
在template下新建.gitignore:
/*¬ !/.gitignore !/index.html !/admin 然后再在admin目录下新建 .gitignore /* !/.gitignore !/index.html 这种情形用子目录的.gitignore比全局要方便。 |
5
9hills 2012-01-06 16:46:50 +08:00
补充一下,上面的第一个/*后多了一个符号“¬”,请删掉。
然后这种方法多用于git添加空目录。。只需要前两行 /* !/.gitignore |