Last active
May 6, 2025 06:32
-
-
Save bendasvadim/fc398385810473f9724bad9d42281fb3 to your computer and use it in GitHub Desktop.
GIT. Как полностью удалить файл из истории
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Нужно найти все коммиты, которые изменяли файл: | |
git log --pretty=oneline --branches -- BIGFILE.ZIP | |
2.1 Удалить ссылки на файл из всей истории коммитов, начиная с последнего (пусть, хеш последнего коммита - 6df7640): | |
git filter-branch --index-filter 'git rm --cached BIGFILE.ZIP --ignore-unmatch' --prune-empty --tag-name-filter cat -- --all | |
2.2 Удалить ссылки на каталог из истории коммитов: | |
git filter-branch --force --index-filter 'git rm -r --cached --ignore-unmatch BIG/DIR' --prune-empty --tag-name-filter cat -- --all | |
3. Отправляем изменения на сервер: | |
git push --force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment