感谢您提前阅读我的问题.Git始终忽略public / index.html文件。
我通过create-react-app创建了一个项目,并且它成功运行
但是当我把它推到Github时,public / index.html就丢失了。
Take this project for example.
.gitignore是:
var placeholder = 'This is a line \nthis should be a new line'; $('textarea').attr('value', placeholder); $('textarea').focus(function(){ if($(this).val() === placeholder){ $(this).attr('value', ''); } }); $('textarea').blur(function(){ if($(this).val() ===''){ $(this).attr('value', placeholder); } });
答案 0 :(得分:3)
未添加/提交使用文件的命令是:
git check-ignore -v -- public/index.html
这将告诉您是否存在带有忽略规则的任何 gitignore / exclude / core.excludesfile
文件。
通常,IDE可以在全局gitignore文件中添加自己的忽略规则。