git-step-rebase: remove pause.
This script is now reliable enough to no longer need investigation stops. One can still stop an ongoing step-rebase by hitting Ctrl-C, then doing a 'git rebase --abort'.
This commit is contained in:
parent
d3867f112c
commit
a88bf4ef16
|
|
@ -54,7 +54,6 @@ wait_count 5
|
||||||
|
|
||||||
while [ ${PARENTS} -ge 0 ]; do
|
while [ ${PARENTS} -ge 0 ]; do
|
||||||
echo -e "Next: rebasing to \033[1m${BASE_BRANCH}~${PARENTS}\033[0m"
|
echo -e "Next: rebasing to \033[1m${BASE_BRANCH}~${PARENTS}\033[0m"
|
||||||
sleep 1
|
|
||||||
if ! git rebase --rerere-autoupdate --whitespace=fix ${BASE_BRANCH}~${PARENTS}; then
|
if ! git rebase --rerere-autoupdate --whitespace=fix ${BASE_BRANCH}~${PARENTS}; then
|
||||||
echo
|
echo
|
||||||
echo "Standard rebase failed."
|
echo "Standard rebase failed."
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue