- 或者在项目根目录下创建.gitignore文件,并添加
/*.iml/.idea//.gitignore.svn/target/.idea/*.iml*.gitignore//.gitignore只能忽略那些原来没有被track(之前没有add过)的文件,如果某些文件已经被纳入了版本管理中,则修改.gitignore是无效的。// 先把本地缓存删除(改变成未track状态),然后再提交://git rm -r --cached target//git rm -r --cached .idea
报错加 -f
the following file has staged content different from both thefile and the HEAD: .idea/.gitignore(use -f to force removal)
//git rm -r -f --cached .idea
方式二:
如果项目已经被git管理且根目录存在.gitignore文件
第一步:右键直接直接添加到.gitignore文件中
第二步,由于项目已经管理了.gitignore文件所以在terminal控制台中执行命令
//暂存更改://使用 git update-index --assume-unchanged 命令来告诉 Git 忽略对该文件的未来更改。这不会将更改添加到暂存区,而是让 Git 认为该文件在未来的提交中不会发生变化。git update-index --assume-unchanged .gitignore第三步,如果需要撤销并提交.gitignore文件则
//撤销暂存://如果你想要 Git 再次追踪 .gitignore 文件的更改,你需要撤销之前的 --assume-unchanged 设置。 git update-index --no-assume-unchanged