84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
文件目录demo结构如下,下面有很多demo1,demo2,我想忽略他下面的node_module.我的.gitignore 这样写node_modules/ 但是上传的时候还是会上传node_modules文件夹,该怎么忽略?
demo
demo1
node_module
index.html
index.js
package.json
demo2
.gitignore
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
首先,在命令行操作界面进入项目根目录输入下方命令
vim .gitignore
然后把node_modules这个文件夹的名字以及你想忽略的提交文件夹的名字都写进里面
:wq
通过上方命令退出保存git status就看不到node_modules这个文件夹了
你这是写错了,文件目录是 node_module 而你的规则是 node_modules/?如果只是题目写错,是否之前提交时还没有写这条规则,导致依赖文件被commit了。
首先,在命令行操作界面进入项目根目录输入下方命令
vim .gitignore
然后把node_modules这个文件夹的名字以及你想忽略的提交文件夹的名字都写进里面
:wq
通过上方命令退出保存git status就看不到node_modules这个文件夹了
你这是写错了,文件目录是 node_module 而你的规则是 node_modules/?如果只是题目写错,是否之前提交时还没有写这条规则,导致依赖文件被commit了。