使用.gitignore克隆github存储库

时间:2017-11-22 18:04:43

标签: git amazon-web-services github amazon-ec2 gitignore

我在index.js中有一个包含.gitignore文件的公共存储库。我想使用命令行克隆它以在AWS EC2中使用。问题是:index.js文件无法克隆,因此该应用无法运行。如何解决这个问题而不必摆脱我的.gitignore

1 个答案:

答案 0 :(得分:1)

您可以使用index.js选项从命令行检入-f

git add -f index.js

该文件将暂存,然后您可以提交。 -f会忽略.gitignore中的条目。