From: Johannes Schindelin Date: Wed, 4 Jul 2007 14:33:30 +0000 (+0100) Subject: filter-branch: make output nicer X-Git-Tag: v1.5.3-rc1~86 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5efb48b5ed7dd6838962a7b25845c6d8e2d40422;p=git.git 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 Signed-off-by: Junio C Hamano --- diff --git a/git-filter-branch.sh b/git-filter-branch.sh old mode 100644 new mode 100755 index 5fa9b6174..c22266b48 --- a/git-filter-branch.sh +++ b/git-filter-branch.sh @@ -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