作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用一个共享的 github 存储库来协作一个项目。因为我是个白痴,所以我提交并推送了一个包含我不想共享的密码的脚本文件(是的,我可以更改密码,但无论如何我想删除它!)。
有没有办法从github的历史记录中恢复提交,在本地删除密码,然后重新提交并推送更新的文件?我不想完全删除文件,也不想丢失 github 上的提交历史记录。
(这个问题
How can I completely remove a file from a git repository?
显示如何删除敏感文件,但不显示如何从文件中编辑敏感数据,因此这不是重复的)
最佳答案
我建议使用新的 git filter-repo
, 其中 replaces BFG and git filter-branch
.
注意:如果您在运行上述命令时收到以下错误消息:
Error: need a version of `git` whose `diff-tree` command has the `--combined-all-paths` option`
这意味着你必须
update git
.
git push --force
If you want to modify file contents, you can do so based on a list of expressions in a file, one per line.
For example, with a file namedexpressions.txt
containing:p455w0rd
foo==>bar
glob:*666*==>
regex:\bdriver\b==>pilot
literal:MM/DD/YYYY==>YYYY-MM-DD
regex:([0-9]{2})/([0-9]{2})/([0-9]{4})==>\3-\1-\2then running
git filter-repo --replace-text expressions.txt
will go through and replace:
p455w0rd
with***REMOVED***
,foo
withbar
,- any line containing
666
with a blank line,- the word
driver
withpilot
(but not if it has letters before or after; e.g. drivers will be unmodified),- the exact text
MM/DD/YYYY
withYYYY-MM-DD
and- date strings of the form
MM/DD/YYYY
with ones of the formYYYY-MM-DD
.
关于git - 如何从github历史记录中的文件中删除敏感数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59850631/
我是一名优秀的程序员,十分优秀!