-
Notifications
You must be signed in to change notification settings - Fork 22
/
git-forget-blob.sh
executable file
·59 lines (57 loc) · 2.34 KB
/
git-forget-blob.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env bash
# Completely remove a file from a Git repository history
#
# Copyleft 2017-2019 by Ignacio Nunez Hernanz <nacho _a_t_ ownyourbits _d_o_t_ com>
# GPL licensed (see end of file) * Use at your own risk!
#
# Usage:
# git-forget-blob file_to_forget
#
# Notes:
# It rewrites history, therefore will change commit references and delete tags.
function git-forget-blob()
{
test -d .git || { echo "Need to be at the base of a Git repository." && return 1; }
git repack -Aq
ls .git/objects/pack/*.idx &>/dev/null || {
echo "There is nothing to be forgotten in this repository." && return;
}
echo "Read blobs..."
local BLOBS=( $( git verify-pack -v .git/objects/pack/*.idx | grep blob | awk '{ print $1 }' ) )
for ref in "${BLOBS[@]}"; do
local FILE
FILE=$( git rev-list --objects --all | grep "$ref" | cut -d" " -f2- )
[[ "$FILE" == "$1" ]] && break
unset FILE
done
[[ "$FILE" == "" ]] && { echo "$1 not found in the repository history." && return; }
echo "Wipe out remotes..."
git branch -a | grep "remotes\/" | awk '{ print $1 }' | cut -f2 -d/ | while read -r r; do git remote rm "$r" 2>/dev/null; done
echo "Modify history..."
git filter-branch --index-filter "git rm --cached --ignore-unmatch '$FILE'" --force -- --branches --tags
echo "Wipe out refs..."
rm -rf .git/refs/original/ .git/refs/remotes/ .git/*_HEAD .git/logs/
(git for-each-ref --format="%(refname)" refs/original/ || echo :) | xargs --no-run-if-empty -n1 git update-ref -d
echo "Wipe out reflog..."
git reflog expire --expire-unreachable=now --all
git repack -q -A -d
echo "GC prune..."
git gc --aggressive --prune=now
}
# License
#
# This script is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This script is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this script; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
# Boston, MA 02111-1307 USA
git-forget-blob "$@"