From 689defb4ad5582fbcfc2d3d57e321e31b10a16b9 Mon Sep 17 00:00:00 2001 From: Bjoern Michaelsen Date: Tue, 10 Jul 2012 12:40:01 +0200 Subject: [PATCH] check for uncommited work before executing a nextchange Change-Id: I12b03bb778da712cfe48543949d9634be5221419 --- logerrit | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/logerrit b/logerrit index e5b2ba5bc088..05346d96e00f 100755 --- a/logerrit +++ b/logerrit @@ -73,6 +73,12 @@ case "$1" in git push $GERRITURL HEAD:refs/for/$BRANCH ;; nextchange) + if test -n "`git status -s -uno`" + then + echo "You have uncommited changes. Please commit or stash these:" + git status + exit 1 + fi CHANGEID=`git log --format=format:%b -1 HEAD|grep Change-Id|cut -d: -f2|tr -d \ ` if test -z "$CHANGEID" then