This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/dotfiles/scripts/_git_rm-fat

15 lines
261 B
Plaintext
Raw Normal View History

2020-10-23 07:21:18 +02:00
#!/bin/sh
set -e
read files
git filter-branch -f --index-filter \
"git rm --force --cached --ignore-unmatch $files" \
-- --all
rm -Rf .git/refs/original && \
git reflog expire --expire=now --all && \
git gc --aggressive && \
git prune