当前位置: 首页 > 工具软件 > node-github > 使用案例 >

上传文件到gitHub上,忽略node_module文件

冷俊健
2023-12-01

在项目根目录下点击鼠标右键,选中Git Bash Here
输入命令:

touch .gitignore

在项目目录中出现 .gitignore文件,在该文件中输入在上传时需要被忽略的文件或文件目录

//过滤规则
node_modules/   表示过滤这个文件夹
*.zip   过滤zip后缀文件
demo.html   过滤该文件
 类似资料: