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@xxxxxx> --- git-filter-branch.sh | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 git-filter-branch.sh diff --git a/git-filter-branch.sh b/git-filter-branch.sh old mode 100644 new mode 100755 index 22fb5bf..e320379 --- a/git-filter-branch.sh +++ b/git-filter-branch.sh @@ -160,7 +160,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 "") @@ -203,8 +203,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) 2> /dev/null > ../map/$commit done <../revs src_head=$(tail -n 1 ../revs | sed -e 's/ .*//') -- 1.5.3.rc0.2646.g88600-dirty - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html