git忽略特定文件或者文件夹

如果想让 Git 忽略指定目录 ,不进行更新或提交,可以使用 .gitignore 文件进行配置。


🛠 方法:使用 .gitignore 忽略目录

1️⃣ 在仓库根目录创建 .gitignore 文件

如果你的项目目录下还没有 .gitignore 文件,可以新建一个:

sh 复制代码
touch .gitignore

或者在 VS Code 中手动创建 .gitignore 文件。

2️⃣ 在 .gitignore 文件中添加要忽略的目录

例如,想要忽略 logs/temp/ 目录:

plaintext 复制代码
logs/
temp/

⚠️ 注意:

  • 斜杠 / 代表目录,例如 logs/ 表示忽略 logs 目录及其所有文件。

  • 如果是单个文件,例如 config.json,则写:

    plaintext 复制代码
    config.json

🔄 3️⃣ 提交 .gitignore

让 Git 识别忽略规则:

sh 复制代码
git add .gitignore
git commit -m "Update .gitignore to exclude logs and temp directories"

🚨 4️⃣ 如果目录已经被跟踪,需先清除缓存

如果 logs/temp/ 目录之前已经被 Git 跟踪,即使你添加了 .gitignore,它们仍然会被 Git 识别。此时需要执行:

sh 复制代码
git rm -r --cached logs/ temp/
git commit -m "Remove logs and temp from tracking"
git push origin main  # 推送到远程

📌 其他 .gitignore 示例

忽略所有 .log 文件

plaintext 复制代码
*.log

忽略 node_modules(前端项目)

plaintext 复制代码
node_modules/

忽略 builddist 目录(编译产物)

plaintext 复制代码
build/
dist/

忽略 .env 配置文件

plaintext 复制代码
.env

💡 结论

  1. 创建 .gitignore 并添加需要忽略的目录/文件。
  2. 如果已经被 Git 跟踪,执行 git rm -r --cached 清除缓存
  3. 提交 .gitignore 并推送到远程仓库。
相关推荐
AIMath~15 小时前
向github中上传文件过大超过50M怎么办
网络·git·github
AIMath~19 小时前
如何将一个新的文件夹使用git 工具提交到github新仓库中
git·github
满天星830357719 小时前
【Git】原理及使用(二) (版本回退)
linux·git
愿天垂怜20 小时前
【C++脚手架】ffmpeg 库的介绍与使用
linux·服务器·开发语言·c++·ide·git·ffmpeg
月夜的风吹雨20 小时前
Linux 基础开发工具详解:从 yum 到 gdb 实战指南
linux·git·ubuntu·centos·vim
好运yoo21 小时前
git cherry-pick
git
不是光头 强21 小时前
Obsidian Git 插件安装与配置完全指南
git
.千余1 天前
【C++】C++核心语法:函数重载与缺省参数原理与避坑
c语言·开发语言·c++·经验分享·笔记·git·学习
meowrain1 天前
Git HTTPS Token 凭据配置指南
git·网络协议·https
Ws_1 天前
Git + Gerrit 第二课:diff、暂存区与撤销修改
git