upload-pack: add a trigger for post-upload-pack hook
[gitweb.git] / git-rebase.sh
index d741752c7c8f2713a42d82db09c9057f741a7d2d..2315d95a9fb28e15190461a94a43e28e57fbe6c3 100755 (executable)
@@ -385,8 +385,10 @@ else
 fi
 
 # The tree must be really really clean.
-if ! git update-index --ignore-submodules --refresh; then
-       die "cannot rebase: you have unstaged changes"
+if ! git update-index --ignore-submodules --refresh > /dev/null; then
+       echo >&2 "cannot rebase: you have unstaged changes"
+       git diff --name-status -r --ignore-submodules -- >&2
+       exit 1
 fi
 diff=$(git diff-index --cached --name-status -r --ignore-submodules HEAD --)
 case "$diff" in