From 92926aadf57a2df9f4ee3c900311f88349f8b962 Mon Sep 17 00:00:00 2001 From: Markus Hitter Date: Tue, 25 Apr 2017 20:00:13 +0200 Subject: [PATCH] git-step-rebase: slightly nicer progress report. --- tools/git-step-rebase | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/git-step-rebase b/tools/git-step-rebase index 9a99a4a..e2cd4ae 100755 --- a/tools/git-step-rebase +++ b/tools/git-step-rebase @@ -53,8 +53,7 @@ echo "If not, hit Ctrl-C now." wait_count 5 while [ ${PARENTS} -ge 0 ]; do - echo "Next:" - echo git rebase -X ignore-all-space --whitespace=fix ${BASE_BRANCH}~${PARENTS} + echo -e "Next: rebasing to \033[1m${BASE_BRANCH}~${PARENTS}\033[0m" sleep 1 if ! git rebase -X ignore-all-space --whitespace=fix ${BASE_BRANCH}~${PARENTS}; then exit