1
0
mirror of https://github.com/git/git synced 2024-07-04 16:48:40 +00:00

filter-branch: make output nicer

Instead of filling the screen with progress lines, use \r so that
the progress can be seen, but warning messages are more visible.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Johannes Schindelin 2007-07-04 15:33:30 +01:00 committed by Junio C Hamano
parent 586e4ce248
commit 5efb48b5ed

8
git-filter-branch.sh Normal file → Executable file
View File

@ -164,7 +164,7 @@ test $commits -eq 0 && die "Found nothing to rewrite"
i=0
while read commit parents; do
i=$(($i+1))
printf "$commit ($i/$commits) "
printf "\rRewrite $commit ($i/$commits)"
case "$filter_subdir" in
"")
@ -207,8 +207,8 @@ while read commit parents; do
sed -e '1,/^$/d' <../commit | \
eval "$filter_msg" | \
sh -c "$filter_commit" "git commit-tree" $(git write-tree) $parentstr | \
tee ../map/$commit
sh -c "$filter_commit" "git commit-tree" $(git write-tree) \
$parentstr > ../map/$commit
done <../revs
src_head=$(tail -n 1 ../revs | sed -e 's/ .*//')
@ -260,6 +260,6 @@ fi
cd ../..
rm -rf "$tempdir"
echo "Rewritten history saved to the $dstbranch branch"
printf "\nRewritten history saved to the $dstbranch branch\n"
exit $ret