Git忽略public / index.html

时间:2018-04-27 04:00:48

标签: git reactjs github create-react-app

感谢您提前阅读我的问题.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); } });

我尝试新建另一个index.html并再次提交/推送它。但它没有显示任何提交。我该如何解决这个问题?终端看起来像这样:
enter image description here

1 个答案:

答案 0 :(得分:3)

未添加/提交使用文件的命令是:

git check-ignore -v -- public/index.html

这将告诉您是否存在带有忽略规则的任何 gitignore / exclude / core.excludesfile文件。

通常,IDE可以在全局gitignore文件中添加自己的忽略规则。