mirror of
https://github.com/namibia/tips.git
synced 2024-11-15 17:47:12 +00:00
Merge pull request #153 from eliranmal/master
add a tip to remove sensitive data from history (after a push)
This commit is contained in:
commit
f5b193cfaa
@ -14,6 +14,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
|
||||
* [Everyday Git in twenty commands or so](#everyday-git-in-twenty-commands-or-so)
|
||||
* [Show helpful guides that come with Git](#show-helpful-guides-that-come-with-git)
|
||||
* [Search change by content](#search-change-by-content)
|
||||
* [Remove sensitive data from history, after a push](#remove-sensitive-data-from-history-after-a-push)
|
||||
* [Sync with remote, overwrite local changes](#sync-with-remote-overwrite-local-changes)
|
||||
* [List of all files till a commit](#list-of-all-files-till-a-commit)
|
||||
* [Git reset first commit](#git-reset-first-commit)
|
||||
@ -187,6 +188,11 @@ git help -g
|
||||
git log -S'<a term in the source>'
|
||||
```
|
||||
|
||||
## Remove sensitive data from history, after a push
|
||||
```sh
|
||||
git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch <path-to-your-file>' --prune-empty --tag-name-filter cat -- --all && git push origin --force --all
|
||||
```
|
||||
|
||||
## Sync with remote, overwrite local changes
|
||||
```sh
|
||||
git fetch origin && git reset --hard origin/master && git clean -f -d
|
||||
|
@ -7,6 +7,9 @@
|
||||
}, {
|
||||
"title": "Search change by content",
|
||||
"tip": "git log -S'<a term in the source>'"
|
||||
}, {
|
||||
"title": "Remove sensitive data from history, after a push",
|
||||
"tip": "git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch <path-to-your-file>' --prune-empty --tag-name-filter cat -- --all && git push origin --force --all"
|
||||
}, {
|
||||
"title": "Sync with remote, overwrite local changes",
|
||||
"tip": "git fetch origin && git reset --hard origin/master && git clean -f -d"
|
||||
|
Loading…
Reference in New Issue
Block a user