赞
踩
.gitignore
文件的作用.gitignore
文件的基本语法#
开头的行是注释。*
匹配零个或多个字符,?
匹配单个字符,[]
匹配括号内的任意字符。/
结尾表示目录。!
开头表示不忽略匹配的文件或目录,即使它们的父目录被忽略。.gitignore
文件# 忽略所有 .log 文件
*.log
# 忽略所有 .DS_Store 文件(Mac OS)
.DS_Store
# 忽略 node_modules 目录
node_modules/
# 忽略编译生成的文件
dist/
build/
# 忽略环境配置文件
.env
.env.local
# 忽略特定的文件
secret.json
# 不忽略某个特定文件
!important.txt
# 忽略所有 .txt 文件,但不忽略 doc.txt
*.txt
!doc.txt
.gitignore
文件.gitignore
文件:在项目的根目录下创建一个名为 .gitignore
的文件。
根据项目的需要,添加相应的忽略规则。例如,如果你使用的是 Node.js 项目,可能会忽略 node_modules
目录和环境变量文件 .env
。
.gitignore
文件:将 .gitignore
文件添加到 Git 仓库中并提交:
git add .gitignore
git commit -m "Add .gitignore file"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。