2007-06-03 02:31:28 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Rewrite revision history
|
|
|
|
# Copyright (c) Petr Baudis, 2006
|
|
|
|
# Minimal changes to "port" it to core-git (c) Johannes Schindelin, 2007
|
|
|
|
#
|
2007-07-04 01:41:55 +02:00
|
|
|
# Lets you rewrite the revision history of the current branch, creating
|
|
|
|
# a new branch. You can specify a number of filters to modify the commits,
|
|
|
|
# files and trees.
|
2007-06-03 02:31:28 +02:00
|
|
|
|
2007-06-06 09:43:41 +02:00
|
|
|
USAGE="git-filter-branch [-d TEMPDIR] [FILTERS] DESTBRANCH [REV-RANGE]"
|
2007-06-03 02:31:28 +02:00
|
|
|
. git-sh-setup
|
|
|
|
|
2007-07-04 10:36:24 +02:00
|
|
|
warn () {
|
|
|
|
echo "$*" >&2
|
|
|
|
}
|
|
|
|
|
2007-06-03 02:31:28 +02:00
|
|
|
map()
|
|
|
|
{
|
2007-06-06 20:38:35 +02:00
|
|
|
# if it was not rewritten, take the original
|
2007-07-04 14:08:17 +02:00
|
|
|
if test -r "$workdir/../map/$1"
|
|
|
|
then
|
|
|
|
cat "$workdir/../map/$1"
|
|
|
|
else
|
|
|
|
echo "$1"
|
|
|
|
fi
|
2007-06-03 02:31:28 +02:00
|
|
|
}
|
|
|
|
|
filter-branch: fail gracefully when a filter fails
A common mistake is to provide a filter which fails unwantedly. For
example, this will stop in the middle:
git filter-branch --env-filter '
test $GIT_COMMITTER_EMAIL = xyz &&
export GIT_COMMITTER_EMAIL = abc' rewritten
When $GIT_COMMITTER_EMAIL is not "xyz", the test fails, and consequently
the whole filter has a non-zero exit status. However, as demonstrated
in this example, filter-branch would just stop, and the user would be
none the wiser.
Also, a failing msg-filter would not have been caught, as was the
case with one of the tests.
This patch fixes both issues, by paying attention to the exit status
of msg-filter, and by saying what failed before exiting.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-07-04 16:36:01 +02:00
|
|
|
# override die(): this version puts in an extra line break, so that
|
|
|
|
# the progress is still visible
|
|
|
|
|
|
|
|
die()
|
|
|
|
{
|
|
|
|
echo >&2
|
|
|
|
echo "$*" >&2
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2007-06-03 02:31:28 +02:00
|
|
|
# When piped a commit, output a script to set the ident of either
|
|
|
|
# "author" or "committer
|
|
|
|
|
|
|
|
set_ident () {
|
|
|
|
lid="$(echo "$1" | tr "A-Z" "a-z")"
|
|
|
|
uid="$(echo "$1" | tr "a-z" "A-Z")"
|
|
|
|
pick_id_script='
|
|
|
|
/^'$lid' /{
|
|
|
|
s/'\''/'\''\\'\'\''/g
|
|
|
|
h
|
|
|
|
s/^'$lid' \([^<]*\) <[^>]*> .*$/\1/
|
|
|
|
s/'\''/'\''\'\'\''/g
|
|
|
|
s/.*/export GIT_'$uid'_NAME='\''&'\''/p
|
|
|
|
|
|
|
|
g
|
|
|
|
s/^'$lid' [^<]* <\([^>]*\)> .*$/\1/
|
|
|
|
s/'\''/'\''\'\'\''/g
|
|
|
|
s/.*/export GIT_'$uid'_EMAIL='\''&'\''/p
|
|
|
|
|
|
|
|
g
|
|
|
|
s/^'$lid' [^<]* <[^>]*> \(.*\)$/\1/
|
|
|
|
s/'\''/'\''\'\'\''/g
|
|
|
|
s/.*/export GIT_'$uid'_DATE='\''&'\''/p
|
|
|
|
|
|
|
|
q
|
|
|
|
}
|
|
|
|
'
|
|
|
|
|
|
|
|
LANG=C LC_ALL=C sed -ne "$pick_id_script"
|
|
|
|
# Ensure non-empty id name.
|
|
|
|
echo "[ -n \"\$GIT_${uid}_NAME\" ] || export GIT_${uid}_NAME=\"\${GIT_${uid}_EMAIL%%@*}\""
|
|
|
|
}
|
|
|
|
|
|
|
|
tempdir=.git-rewrite
|
|
|
|
filter_env=
|
|
|
|
filter_tree=
|
|
|
|
filter_index=
|
|
|
|
filter_parent=
|
|
|
|
filter_msg=cat
|
2007-07-03 07:52:14 +02:00
|
|
|
filter_commit='git commit-tree "$@"'
|
2007-06-03 02:31:28 +02:00
|
|
|
filter_tag_name=
|
2007-06-08 02:30:35 +02:00
|
|
|
filter_subdir=
|
2007-07-23 19:34:13 +02:00
|
|
|
orig_namespace=refs/original/
|
|
|
|
force=
|
2007-06-03 02:31:28 +02:00
|
|
|
while case "$#" in 0) usage;; esac
|
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
--)
|
|
|
|
shift
|
|
|
|
break
|
|
|
|
;;
|
2007-07-23 19:34:13 +02:00
|
|
|
--force|-f)
|
|
|
|
shift
|
|
|
|
force=t
|
|
|
|
continue
|
|
|
|
;;
|
2007-06-03 02:31:28 +02:00
|
|
|
-*)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# all switches take one argument
|
|
|
|
ARG="$1"
|
|
|
|
case "$#" in 1) usage ;; esac
|
|
|
|
shift
|
|
|
|
OPTARG="$1"
|
|
|
|
shift
|
|
|
|
|
|
|
|
case "$ARG" in
|
|
|
|
-d)
|
|
|
|
tempdir="$OPTARG"
|
|
|
|
;;
|
|
|
|
--env-filter)
|
|
|
|
filter_env="$OPTARG"
|
|
|
|
;;
|
|
|
|
--tree-filter)
|
|
|
|
filter_tree="$OPTARG"
|
|
|
|
;;
|
|
|
|
--index-filter)
|
|
|
|
filter_index="$OPTARG"
|
|
|
|
;;
|
|
|
|
--parent-filter)
|
|
|
|
filter_parent="$OPTARG"
|
|
|
|
;;
|
|
|
|
--msg-filter)
|
|
|
|
filter_msg="$OPTARG"
|
|
|
|
;;
|
|
|
|
--commit-filter)
|
|
|
|
filter_commit="$OPTARG"
|
|
|
|
;;
|
|
|
|
--tag-name-filter)
|
|
|
|
filter_tag_name="$OPTARG"
|
|
|
|
;;
|
2007-06-08 02:30:35 +02:00
|
|
|
--subdirectory-filter)
|
|
|
|
filter_subdir="$OPTARG"
|
|
|
|
;;
|
2007-07-23 19:34:13 +02:00
|
|
|
--original)
|
|
|
|
orig_namespace="$OPTARG"
|
|
|
|
;;
|
2007-06-03 02:31:28 +02:00
|
|
|
*)
|
|
|
|
usage
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2007-07-23 19:34:13 +02:00
|
|
|
case "$force" in
|
|
|
|
t)
|
|
|
|
rm -rf "$tempdir"
|
|
|
|
;;
|
|
|
|
'')
|
|
|
|
test -d "$tempdir" &&
|
|
|
|
die "$tempdir already exists, please remove it"
|
|
|
|
esac
|
2007-07-18 15:17:43 +02:00
|
|
|
mkdir -p "$tempdir/t" &&
|
2007-07-23 19:34:13 +02:00
|
|
|
tempdir="$(cd "$tempdir"; pwd)" &&
|
2007-07-18 15:17:43 +02:00
|
|
|
cd "$tempdir/t" &&
|
|
|
|
workdir="$(pwd)" ||
|
|
|
|
die ""
|
2007-06-03 02:31:28 +02:00
|
|
|
|
2007-07-23 19:34:13 +02:00
|
|
|
# Make sure refs/original is empty
|
|
|
|
git for-each-ref > "$tempdir"/backup-refs
|
|
|
|
while read sha1 type name
|
|
|
|
do
|
|
|
|
case "$force,$name" in
|
|
|
|
,$orig_namespace*)
|
|
|
|
die "Namespace $orig_namespace not empty"
|
|
|
|
;;
|
|
|
|
t,$orig_namespace*)
|
|
|
|
git update-ref -d "$name" $sha1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done < "$tempdir"/backup-refs
|
|
|
|
|
2007-06-03 02:31:28 +02:00
|
|
|
case "$GIT_DIR" in
|
|
|
|
/*)
|
|
|
|
;;
|
|
|
|
*)
|
2007-06-06 09:16:56 +02:00
|
|
|
GIT_DIR="$(pwd)/../../$GIT_DIR"
|
2007-06-03 02:31:28 +02:00
|
|
|
;;
|
|
|
|
esac
|
2007-06-06 09:16:56 +02:00
|
|
|
export GIT_DIR GIT_WORK_TREE=.
|
2007-06-03 02:31:28 +02:00
|
|
|
|
2007-07-23 19:34:13 +02:00
|
|
|
# These refs should be updated if their heads were rewritten
|
|
|
|
|
|
|
|
git rev-parse --revs-only --symbolic "$@" |
|
|
|
|
while read ref
|
|
|
|
do
|
|
|
|
# normalize ref
|
|
|
|
case "$ref" in
|
|
|
|
HEAD)
|
|
|
|
ref="$(git symbolic-ref "$ref")"
|
|
|
|
;;
|
|
|
|
refs/*)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
ref="$(git for-each-ref --format='%(refname)' |
|
|
|
|
grep /"$ref")"
|
|
|
|
esac
|
|
|
|
|
|
|
|
git check-ref-format "$ref" && echo "$ref"
|
|
|
|
done > "$tempdir"/heads
|
|
|
|
|
|
|
|
test -s "$tempdir"/heads ||
|
|
|
|
die "Which ref do you want to rewrite?"
|
|
|
|
|
2007-06-03 02:31:28 +02:00
|
|
|
export GIT_INDEX_FILE="$(pwd)/../index"
|
2007-07-18 15:17:43 +02:00
|
|
|
git read-tree || die "Could not seed the index"
|
2007-06-03 02:31:28 +02:00
|
|
|
|
|
|
|
ret=0
|
|
|
|
|
2007-07-18 15:17:43 +02:00
|
|
|
# map old->new commit ids for rewriting parents
|
|
|
|
mkdir ../map || die "Could not create map/ directory"
|
2007-06-03 02:31:28 +02:00
|
|
|
|
2007-06-08 02:30:35 +02:00
|
|
|
case "$filter_subdir" in
|
|
|
|
"")
|
2007-07-03 07:52:14 +02:00
|
|
|
git rev-list --reverse --topo-order --default HEAD \
|
2007-06-08 23:28:39 +02:00
|
|
|
--parents "$@"
|
2007-06-08 02:30:35 +02:00
|
|
|
;;
|
|
|
|
*)
|
2007-07-03 07:52:14 +02:00
|
|
|
git rev-list --reverse --topo-order --default HEAD \
|
2007-06-08 23:28:50 +02:00
|
|
|
--parents --full-history "$@" -- "$filter_subdir"
|
2007-07-18 15:17:43 +02:00
|
|
|
esac > ../revs || die "Could not get the commits"
|
2007-07-14 10:05:43 +02:00
|
|
|
commits=$(wc -l <../revs | tr -d " ")
|
2007-06-03 02:31:28 +02:00
|
|
|
|
|
|
|
test $commits -eq 0 && die "Found nothing to rewrite"
|
|
|
|
|
2007-07-23 19:34:13 +02:00
|
|
|
# Rewrite the commits
|
|
|
|
|
2007-06-03 02:31:28 +02:00
|
|
|
i=0
|
2007-06-08 23:28:39 +02:00
|
|
|
while read commit parents; do
|
2007-06-06 17:24:07 +02:00
|
|
|
i=$(($i+1))
|
2007-07-04 16:33:30 +02:00
|
|
|
printf "\rRewrite $commit ($i/$commits)"
|
2007-06-03 02:31:28 +02:00
|
|
|
|
2007-06-08 02:30:35 +02:00
|
|
|
case "$filter_subdir" in
|
|
|
|
"")
|
2007-07-03 07:52:14 +02:00
|
|
|
git read-tree -i -m $commit
|
2007-06-08 02:30:35 +02:00
|
|
|
;;
|
|
|
|
*)
|
2007-07-03 07:52:14 +02:00
|
|
|
git read-tree -i -m $commit:"$filter_subdir"
|
2007-07-18 15:17:43 +02:00
|
|
|
esac || die "Could not initialize the index"
|
2007-06-03 02:31:28 +02:00
|
|
|
|
|
|
|
export GIT_COMMIT=$commit
|
2007-07-18 15:17:43 +02:00
|
|
|
git cat-file commit "$commit" >../commit ||
|
|
|
|
die "Cannot read commit $commit"
|
2007-06-03 02:31:28 +02:00
|
|
|
|
filter-branch: fail gracefully when a filter fails
A common mistake is to provide a filter which fails unwantedly. For
example, this will stop in the middle:
git filter-branch --env-filter '
test $GIT_COMMITTER_EMAIL = xyz &&
export GIT_COMMITTER_EMAIL = abc' rewritten
When $GIT_COMMITTER_EMAIL is not "xyz", the test fails, and consequently
the whole filter has a non-zero exit status. However, as demonstrated
in this example, filter-branch would just stop, and the user would be
none the wiser.
Also, a failing msg-filter would not have been caught, as was the
case with one of the tests.
This patch fixes both issues, by paying attention to the exit status
of msg-filter, and by saying what failed before exiting.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-07-04 16:36:01 +02:00
|
|
|
eval "$(set_ident AUTHOR <../commit)" ||
|
|
|
|
die "setting author failed for commit $commit"
|
|
|
|
eval "$(set_ident COMMITTER <../commit)" ||
|
|
|
|
die "setting committer failed for commit $commit"
|
|
|
|
eval "$filter_env" < /dev/null ||
|
|
|
|
die "env filter failed: $filter_env"
|
2007-06-03 02:31:28 +02:00
|
|
|
|
|
|
|
if [ "$filter_tree" ]; then
|
2007-07-18 15:17:43 +02:00
|
|
|
git checkout-index -f -u -a ||
|
|
|
|
die "Could not checkout the index"
|
2007-06-03 02:31:28 +02:00
|
|
|
# files that $commit removed are now still in the working tree;
|
|
|
|
# remove them, else they would be added again
|
2007-07-03 07:52:14 +02:00
|
|
|
git ls-files -z --others | xargs -0 rm -f
|
filter-branch: fail gracefully when a filter fails
A common mistake is to provide a filter which fails unwantedly. For
example, this will stop in the middle:
git filter-branch --env-filter '
test $GIT_COMMITTER_EMAIL = xyz &&
export GIT_COMMITTER_EMAIL = abc' rewritten
When $GIT_COMMITTER_EMAIL is not "xyz", the test fails, and consequently
the whole filter has a non-zero exit status. However, as demonstrated
in this example, filter-branch would just stop, and the user would be
none the wiser.
Also, a failing msg-filter would not have been caught, as was the
case with one of the tests.
This patch fixes both issues, by paying attention to the exit status
of msg-filter, and by saying what failed before exiting.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-07-04 16:36:01 +02:00
|
|
|
eval "$filter_tree" < /dev/null ||
|
|
|
|
die "tree filter failed: $filter_tree"
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
git diff-index -r $commit | cut -f 2- | tr '\n' '\0' | \
|
|
|
|
xargs -0 git update-index --add --replace --remove
|
|
|
|
git ls-files -z --others | \
|
|
|
|
xargs -0 git update-index --add --replace --remove
|
2007-06-03 02:31:28 +02:00
|
|
|
fi
|
|
|
|
|
filter-branch: fail gracefully when a filter fails
A common mistake is to provide a filter which fails unwantedly. For
example, this will stop in the middle:
git filter-branch --env-filter '
test $GIT_COMMITTER_EMAIL = xyz &&
export GIT_COMMITTER_EMAIL = abc' rewritten
When $GIT_COMMITTER_EMAIL is not "xyz", the test fails, and consequently
the whole filter has a non-zero exit status. However, as demonstrated
in this example, filter-branch would just stop, and the user would be
none the wiser.
Also, a failing msg-filter would not have been caught, as was the
case with one of the tests.
This patch fixes both issues, by paying attention to the exit status
of msg-filter, and by saying what failed before exiting.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-07-04 16:36:01 +02:00
|
|
|
eval "$filter_index" < /dev/null ||
|
|
|
|
die "index filter failed: $filter_index"
|
2007-06-03 02:31:28 +02:00
|
|
|
|
|
|
|
parentstr=
|
2007-06-08 23:28:39 +02:00
|
|
|
for parent in $parents; do
|
2007-06-06 20:38:35 +02:00
|
|
|
for reparent in $(map "$parent"); do
|
|
|
|
parentstr="$parentstr -p $reparent"
|
|
|
|
done
|
2007-06-03 02:31:28 +02:00
|
|
|
done
|
|
|
|
if [ "$filter_parent" ]; then
|
filter-branch: fail gracefully when a filter fails
A common mistake is to provide a filter which fails unwantedly. For
example, this will stop in the middle:
git filter-branch --env-filter '
test $GIT_COMMITTER_EMAIL = xyz &&
export GIT_COMMITTER_EMAIL = abc' rewritten
When $GIT_COMMITTER_EMAIL is not "xyz", the test fails, and consequently
the whole filter has a non-zero exit status. However, as demonstrated
in this example, filter-branch would just stop, and the user would be
none the wiser.
Also, a failing msg-filter would not have been caught, as was the
case with one of the tests.
This patch fixes both issues, by paying attention to the exit status
of msg-filter, and by saying what failed before exiting.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-07-04 16:36:01 +02:00
|
|
|
parentstr="$(echo "$parentstr" | eval "$filter_parent")" ||
|
|
|
|
die "parent filter failed: $filter_parent"
|
2007-06-03 02:31:28 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
sed -e '1,/^$/d' <../commit | \
|
filter-branch: fail gracefully when a filter fails
A common mistake is to provide a filter which fails unwantedly. For
example, this will stop in the middle:
git filter-branch --env-filter '
test $GIT_COMMITTER_EMAIL = xyz &&
export GIT_COMMITTER_EMAIL = abc' rewritten
When $GIT_COMMITTER_EMAIL is not "xyz", the test fails, and consequently
the whole filter has a non-zero exit status. However, as demonstrated
in this example, filter-branch would just stop, and the user would be
none the wiser.
Also, a failing msg-filter would not have been caught, as was the
case with one of the tests.
This patch fixes both issues, by paying attention to the exit status
of msg-filter, and by saying what failed before exiting.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-07-04 16:36:01 +02:00
|
|
|
eval "$filter_msg" > ../message ||
|
|
|
|
die "msg filter failed: $filter_msg"
|
|
|
|
sh -c "$filter_commit" "git commit-tree" \
|
|
|
|
$(git write-tree) $parentstr < ../message > ../map/$commit
|
2007-06-03 02:31:28 +02:00
|
|
|
done <../revs
|
|
|
|
|
2007-07-23 19:34:13 +02:00
|
|
|
# In case of a subdirectory filter, it is possible that a specified head
|
|
|
|
# is not in the set of rewritten commits, because it was pruned by the
|
|
|
|
# revision walker. Fix it by mapping these heads to the next rewritten
|
|
|
|
# ancestor(s), i.e. the boundaries in the set of rewritten commits.
|
|
|
|
|
|
|
|
# NEEDSWORK: we should sort the unmapped refs topologically first
|
|
|
|
while read ref
|
|
|
|
do
|
|
|
|
sha1=$(git rev-parse "$ref"^0)
|
|
|
|
test -f "$workdir"/../map/$sha1 && continue
|
|
|
|
# Assign the boundarie(s) in the set of rewritten commits
|
|
|
|
# as the replacement commit(s).
|
|
|
|
# (This would look a bit nicer if --not --stdin worked.)
|
2007-07-24 23:29:29 +02:00
|
|
|
for p in $( (cd "$workdir"/../map; ls | sed "s/^/^/") |
|
2007-07-23 19:34:13 +02:00
|
|
|
git rev-list $ref --boundary --stdin |
|
|
|
|
sed -n "s/^-//p")
|
|
|
|
do
|
|
|
|
map $p >> "$workdir"/../map/$sha1
|
|
|
|
done
|
|
|
|
done < "$tempdir"/heads
|
|
|
|
|
|
|
|
# Finally update the refs
|
|
|
|
|
|
|
|
_x40='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
|
|
|
|
_x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40"
|
|
|
|
count=0
|
|
|
|
echo
|
|
|
|
while read ref
|
|
|
|
do
|
|
|
|
# avoid rewriting a ref twice
|
|
|
|
test -f "$orig_namespace$ref" && continue
|
|
|
|
|
|
|
|
sha1=$(git rev-parse "$ref"^0)
|
|
|
|
rewritten=$(map $sha1)
|
|
|
|
|
|
|
|
test $sha1 = "$rewritten" &&
|
|
|
|
warn "WARNING: Ref '$ref' is unchanged" &&
|
|
|
|
continue
|
|
|
|
|
|
|
|
case "$rewritten" in
|
|
|
|
'')
|
|
|
|
echo "Ref '$ref' was deleted"
|
|
|
|
git update-ref -m "filter-branch: delete" -d "$ref" $sha1 ||
|
|
|
|
die "Could not delete $ref"
|
2007-06-05 17:58:13 +02:00
|
|
|
;;
|
2007-07-23 19:34:13 +02:00
|
|
|
$_x40)
|
|
|
|
echo "Ref '$ref' was rewritten"
|
|
|
|
git update-ref -m "filter-branch: rewrite" \
|
|
|
|
"$ref" $rewritten $sha1 ||
|
|
|
|
die "Could not rewrite $ref"
|
2007-06-05 17:58:13 +02:00
|
|
|
;;
|
2007-07-23 19:34:13 +02:00
|
|
|
*)
|
|
|
|
# NEEDSWORK: possibly add -Werror, making this an error
|
|
|
|
warn "WARNING: '$ref' was rewritten into multiple commits:"
|
|
|
|
warn "$rewritten"
|
|
|
|
warn "WARNING: Ref '$ref' points to the first one now."
|
|
|
|
rewritten=$(echo "$rewritten" | head -n 1)
|
|
|
|
git update-ref -m "filter-branch: rewrite to first" \
|
|
|
|
"$ref" $rewritten $sha1 ||
|
|
|
|
die "Could not rewrite $ref"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
git update-ref -m "filter-branch: backup" "$orig_namespace$ref" $sha1
|
|
|
|
count=$(($count+1))
|
|
|
|
done < "$tempdir"/heads
|
|
|
|
|
|
|
|
# TODO: This should possibly go, with the semantics that all positive given
|
|
|
|
# refs are updated, and their original heads stored in refs/original/
|
|
|
|
# Filter tags
|
2007-06-03 02:31:28 +02:00
|
|
|
|
|
|
|
if [ "$filter_tag_name" ]; then
|
2007-07-03 07:52:14 +02:00
|
|
|
git for-each-ref --format='%(objectname) %(objecttype) %(refname)' refs/tags |
|
2007-06-03 02:31:28 +02:00
|
|
|
while read sha1 type ref; do
|
|
|
|
ref="${ref#refs/tags/}"
|
|
|
|
# XXX: Rewrite tagged trees as well?
|
|
|
|
if [ "$type" != "commit" -a "$type" != "tag" ]; then
|
|
|
|
continue;
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$type" = "tag" ]; then
|
|
|
|
# Dereference to a commit
|
|
|
|
sha1t="$sha1"
|
2007-07-03 07:52:14 +02:00
|
|
|
sha1="$(git rev-parse "$sha1"^{commit} 2>/dev/null)" || continue
|
2007-06-03 02:31:28 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
[ -f "../map/$sha1" ] || continue
|
|
|
|
new_sha1="$(cat "../map/$sha1")"
|
|
|
|
export GIT_COMMIT="$sha1"
|
filter-branch: fail gracefully when a filter fails
A common mistake is to provide a filter which fails unwantedly. For
example, this will stop in the middle:
git filter-branch --env-filter '
test $GIT_COMMITTER_EMAIL = xyz &&
export GIT_COMMITTER_EMAIL = abc' rewritten
When $GIT_COMMITTER_EMAIL is not "xyz", the test fails, and consequently
the whole filter has a non-zero exit status. However, as demonstrated
in this example, filter-branch would just stop, and the user would be
none the wiser.
Also, a failing msg-filter would not have been caught, as was the
case with one of the tests.
This patch fixes both issues, by paying attention to the exit status
of msg-filter, and by saying what failed before exiting.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-07-04 16:36:01 +02:00
|
|
|
new_ref="$(echo "$ref" | eval "$filter_tag_name")" ||
|
|
|
|
die "tag name filter failed: $filter_tag_name"
|
2007-06-03 02:31:28 +02:00
|
|
|
|
|
|
|
echo "$ref -> $new_ref ($sha1 -> $new_sha1)"
|
|
|
|
|
|
|
|
if [ "$type" = "tag" ]; then
|
|
|
|
# Warn that we are not rewriting the tag object itself.
|
|
|
|
warn "unreferencing tag object $sha1t"
|
|
|
|
fi
|
|
|
|
|
2007-07-18 15:17:43 +02:00
|
|
|
git update-ref "refs/tags/$new_ref" "$new_sha1" ||
|
|
|
|
die "Could not write tag $new_ref"
|
2007-06-03 02:31:28 +02:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd ../..
|
|
|
|
rm -rf "$tempdir"
|
2007-07-23 19:34:13 +02:00
|
|
|
echo
|
|
|
|
test $count -gt 0 && echo "These refs were rewritten:"
|
|
|
|
git show-ref | grep ^"$orig_namespace"
|
2007-06-03 02:31:28 +02:00
|
|
|
|
|
|
|
exit $ret
|