summaryrefslogtreecommitdiff
path: root/git_review/cmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'git_review/cmd.py')
-rw-r--r--git_review/cmd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git_review/cmd.py b/git_review/cmd.py
index ccf4c09..16b613a 100644
--- a/git_review/cmd.py
+++ b/git_review/cmd.py
@@ -888,13 +888,13 @@ def rebase_changes(branch, remote, interactive=True):
# Either the rebase will fail with a similar message, or if the user
# has turned on rebase.autostash then the subsequent reset will
# silently discard those changes.
- cmd = "git diff --quiet"
+ cmd = "git diff --ignore-submodules --quiet"
(status, output) = run_command_status(cmd)
if status != 0:
printwrap("You have unstaged changes. Please commit or stash them "
"first, and then try again.")
sys.exit(1)
- cmd = "git diff --cached --quiet"
+ cmd = "git diff --cached --ignore-submodules --quiet"
(status, output) = run_command_status(cmd)
if status != 0:
printwrap("You have uncommitted changes. Please commit or stash them "