我知道之前已经问过这个问题,但我仍然对我需要采取的确切步骤感到困惑。
几个月前,我在github上提交了一个包含公共存储库(我拥有)中的敏感信息的文件。我现在必须删除此文件以及它的任何痕迹。
具体来说,它是一个web.config
文件,其中包含一些数据库详细信息。我需要删除连接字符串,但我很乐意删除整个文件并在需要时添加回来。
此后有很多提交。
我看了BFG这听起来像是工作的正确工具,但这没有用 - 可能我犯了一个错误。
步骤:
git clone --mirror git://example.com/my-repo.git
bfg-1.12.15.jar --delete-files web.config my-repo.git
cd my-repo.git
git reflog expire --expire=now --all && git gc --prune=now --aggressive
git push
输出:
Counting objects: 1064, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (1058/1058), done.
Writing objects: 100% (1064/1064), done.
Total 1064 (delta 775), reused 289 (delta 0)
Everything up-to-date
该文件仍然存在,我需要做什么才能从存储库中删除此web.config
文件?
更新
好的,所以建议删除web.config,然后重新运行命令:
rm web.config
git commit -am "removed web config"
git push
然后我重新运行上面的所有命令,我得到了:
Using repo : xxx.git
Found 246 objects to protect
Found 2 commit-pointing refs : HEAD, refs/heads/master
Protected commits
-----------------
These are your protected commits, and so their contents will NOT be altered:
* commit 1f4ad898 (protected by 'HEAD')
Cleaning
--------
Found 114 commits
Cleaning commits: 100% (114/114)
Cleaning commits completed in 93 ms.
BFG aborting: No refs to update - no dirty commits found??
更新2
原来BFG工作正常,我不小心输入了web.config
小写而不是实际的Web.config
。无论如何它已经解决了我的问题:)
答案 0 :(得分:2)
您描述的步骤似乎是使用BFG工具的正确方法(基于他们的文档)。
请注意,BFG Repo Cleaner仅影响存储库的历史记录,并且不会触及提交历史记录中的最新提交。换句话说,首先需要清理分支的尖端,然后运行BFG工具。
根据您当前的状态,首先使用或git rm web.config
清除当前状态,提交更改,推送所有内容,然后运行BFG清理历史记录。
答案 1 :(得分:0)
cd到目录,
git rm web.config
检查是否删除了“web.config”
git status
您可能需要从repo中提取更新