diff --git a/git_cl.py b/git_cl.py index 1afa70911e..1e94fa5de4 100755 --- a/git_cl.py +++ b/git_cl.py @@ -2972,8 +2972,11 @@ class Changelist(object): desc = ps_to_info[ps].get('description', '') print('Patchset %d [%s] %s' % (ps, commit, desc)) - if not ask_for_explicit_yes('\nUploading as-is will override them. ' - 'Get the latest changes and apply?'): + print('\nSee diff at: %s/%d..%d' % + (self.GetIssueURL(short=True), local_ps, external_ps)) + print('\nUploading without applying patches will override them.') + + if not ask_for_explicit_yes('Get the latest changes and apply on top?'): return # Get latest Gerrit merge base. Use the first parent even if multiple exist.