From 3bb82ff15aa4aec3e073a07ef8548fabf132708b Mon Sep 17 00:00:00 2001 From: tandrii Date: Fri, 17 Jun 2016 07:36:36 -0700 Subject: [PATCH] Add SVN->Git migration warning to git cl dcommit users. R=mmoss@chromium.org,benhenry@chromium.org BUG=600451,161849 Review-Url: https://codereview.chromium.org/2074883002 --- git_cl.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/git_cl.py b/git_cl.py index 672d8849a..8407eb001 100755 --- a/git_cl.py +++ b/git_cl.py @@ -4166,6 +4166,11 @@ review to be closed, without actually landing upstream. If you choose to proceed, please verify that the commit lands upstream as expected.""" print(message) ask_for_data('[Press enter to dcommit or ctrl-C to quit]') + # TODO(tandrii): kill this post SVN migration with + # https://codereview.chromium.org/2076683002 + print('WARNING: chrome infrastructure is migrating SVN repos to Git.\n' + 'Please let us know of this project you are committing to:' + ' http://crbug.com/600451') return SendUpstream(parser, args, 'dcommit')