Don't attempt to open an interactive editor

Merging with git can cause git to want to pop you into an editor. That's
not cool in a script. Supply --no-edit to cause the commit to just work.

Change-Id: Ic70d74c28d1ca16ae21b2a6c141b26d4e68b21f0
This commit is contained in:
Monty Taylor 2013-12-13 19:51:29 -05:00
parent 05e70d9ef2
commit 833096afe8

View File

@ -23,7 +23,7 @@ then
git review -s
git checkout master
git reset --hard origin/master
git merge -s ours $TAG
git merge --no-edit -s ours $TAG
# Get a Change-Id
GIT_EDITOR=true git commit --amend
git review -R -t merge/release-tag