Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
rebase --merge: return control to caller, for housekeeping
author
Ramkumar Ramachandra
<artagnon@gmail.com>
Sun, 12 May 2013 11:56:40 +0000
(17:26 +0530)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 13 May 2013 06:20:08 +0000
(23:20 -0700)
Return control to the caller git-rebase.sh to get these two tasks
rm -fr "$dotest"
git gc --auto
done by it.
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-rebase--merge.sh
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
15d4bf2
)
diff --git
a/git-rebase--merge.sh
b/git-rebase--merge.sh
index b10f2cf21b904bbbc3fafc27d183d8ad7917b479..16d18176ece5eecf4a3b0b0a9dea0a5b41ac43d4 100644
(file)
--- a/
git-rebase--merge.sh
+++ b/
git-rebase--merge.sh
@@
-96,7
+96,6
@@
finish_rb_merge () {
"$GIT_DIR"/hooks/post-rewrite rebase <"$state_dir"/rewritten
fi
fi
- rm -r "$state_dir"
say All done.
}
@@
-110,7
+109,7
@@
continue)
continue_merge
done
finish_rb_merge
- exit
+ return
;;
skip)
read_state
@@
-122,7
+121,7
@@
skip)
continue_merge
done
finish_rb_merge
- exit
+ return
;;
esac