* [PATCH] filter-branch: make output nicer
@ 2007-07-04 12:45 Johannes Schindelin
2007-07-04 12:50 ` Johannes Schindelin
0 siblings, 1 reply; 3+ messages in thread
From: Johannes Schindelin @ 2007-07-04 12:45 UTC (permalink / raw)
To: git, gitster
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>
---
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
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH] filter-branch: make output nicer
2007-07-04 12:45 [PATCH] filter-branch: make output nicer Johannes Schindelin
@ 2007-07-04 12:50 ` Johannes Schindelin
2007-07-04 13:25 ` Johannes Schindelin
0 siblings, 1 reply; 3+ messages in thread
From: Johannes Schindelin @ 2007-07-04 12:50 UTC (permalink / raw)
To: git, gitster
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>
---
Oops. Forgot the last output line.
git-filter-branch.sh | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
mode change 100644 => 100755 git-filter-branch.sh
diff --git a/git-filter-branch.sh b/git-filter-branch.sh
index 22fb5bf..c9a64b0
--- 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/ .*//')
@@ -256,6 +256,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
--
1.5.3.rc0.2646.g88600-dirty
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] filter-branch: make output nicer
2007-07-04 12:50 ` Johannes Schindelin
@ 2007-07-04 13:25 ` Johannes Schindelin
0 siblings, 0 replies; 3+ messages in thread
From: Johannes Schindelin @ 2007-07-04 13:25 UTC (permalink / raw)
To: git, gitster
Hi,
On Wed, 4 Jul 2007, Johannes Schindelin wrote:
> - 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
Aargh! I seem to be unable to get anything right today. This should be
+ sh -c "$filter_commit" "git commit-tree" $(git write-tree) \
+ $parentstr > ../map/$commit
Ah well. I think I play a little more with it, and resubmit the patch.
Please ignore.
Ciao,
Dscho
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-07-04 13:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-04 12:45 [PATCH] filter-branch: make output nicer Johannes Schindelin
2007-07-04 12:50 ` Johannes Schindelin
2007-07-04 13:25 ` Johannes Schindelin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).