git-filter-repo: add page (#7493)

This commit is contained in:
Peter Babič 2021-12-27 17:55:08 +01:00 committed by GitHub
parent 59bff1c102
commit d7375910c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,21 @@
# git filter-repo
> A versatile tool for rewriting Git history.
> See also: `bfg`.
> More information: <https://github.com/newren/git-filter-repo>.
- Replace a sensitive string in all files:
`git filter-repo --replace-text <(echo '{{find}}==>{{replacement}}')`
- Extract a single folder, keeping history:
`git-filter-repo --path {{path/to/folder}}`
- Remove a single folder, keeping history:
`git-filter-repo --path {{path/to/folder}} --invert-paths`
- Move everything from sub-folder one level up:
`git-filter-repo --path-rename {{path/to/folder/:}}`