git add和git commit了大文件导致上传不到github的撤销操作

撤销git add和git commit操作(对于修改过的代码无影响)

python 复制代码
git reset HEAD^ 

HEAD^代表撤销最近的一个,如果有多个就reset多几次

参考:git commit之后,撤销commit提交,却保留代码

然后需要设置.gitignore文件来忽略掉大文件后重新git add 和git commit

  • .gitignore 文件的格式是每行一个文件路径或文件模式,可以使用通配符进行匹配。以下是一些常见的例子:

忽略某个特定文件:

python 复制代码
largefile.zip

忽略某个文件夹及其内容:

python 复制代码
/largefolder/

忽略特定类型的文件(例如 .mp4 或 .log 文件):

python 复制代码
*.mp4
*.log

忽略所有 .tmp 文件:

python 复制代码
*.tmp

忽略某个特定的子目录中的文件:

python 复制代码
/path/to/largefile/

在 .gitignore 配置好之后,你可以使用 git status 来确认文件是否被正确忽略。如果文件已被添加到 Git 跟踪中(即已被提交或暂存),Git 仍然会继续跟踪它们,即使你把它们添加到 .gitignore 中。为此,你需要执行以下操作:如果文件已经被 git add,但你想让它被 .gitignore 忽略,可以使用:

python 复制代码
git rm --cached .

重新trace file

python 复制代码
git add ./*

然后再git commit和git push就可以了

python 复制代码
git commit -m "注释"
python 复制代码
git push origin master

参考:
git 修改.gitignore后生效
git查看commit提交记录详情

相关推荐
学习&笔记2 小时前
git 撤销修改
git
star@星空5 小时前
git工作中常用指令
大数据·git·elasticsearch
helpme流水6 小时前
使用秘钥登录服务器
运维·服务器·github
uhakadotcom6 小时前
Bun相比npm包管理工具有啥优点?
前端·架构·github
油泼辣子多加11 小时前
2024年12月11日Github流行趋势
github
问道飞鱼14 小时前
【GIT知识】git进阶-hooks勾子脚本
git·hooks
saku16 小时前
Sora 终于发布,但已经不再期待了
人工智能·github
CoderLiu16 小时前
用Rust写了一个GitLib代码分析工具
前端·git·rust
Octopus207717 小时前
【Linux】git操作
linux·笔记·git·学习
林政硕(Cohen0415)18 小时前
Repo管理
git·嵌入式·repo