Git - 在同一文件夹中提交 html + js 文件
Git - commit html + js files in the same folder
我在 WebStorm 中设置了一个项目,使用 Git 作为源代码管理。我创建了一个文件夹,其中包含两种类型的文件:html 和 js。
结构是这样的:
file1.html
file1.js
file2.html
file2.js
当我尝试提交文件或整个文件夹时,它仅在提交中包含 html 文件。我无法 commit/push 将 js 文件添加到存储库。
是应该这样做还是我做错了什么?
可能在您的 git 存储库中忽略了 .js 文件。检查 git 存储库中的任何 .gitignore
文件并删除该模式。大概有这样一行:
*.js
我在 WebStorm 中设置了一个项目,使用 Git 作为源代码管理。我创建了一个文件夹,其中包含两种类型的文件:html 和 js。 结构是这样的:
file1.html
file1.js
file2.html
file2.js
当我尝试提交文件或整个文件夹时,它仅在提交中包含 html 文件。我无法 commit/push 将 js 文件添加到存储库。 是应该这样做还是我做错了什么?
可能在您的 git 存储库中忽略了 .js 文件。检查 git 存储库中的任何 .gitignore
文件并删除该模式。大概有这样一行:
*.js