diff options
author | Nicolas Boichat <drinkcat@chromium.org> | 2020-07-13 10:50:01 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-07-25 14:46:57 -0600 |
commit | e1db5c9b08b81754c9467d0e515ce613dbab60f9 (patch) | |
tree | 2bb859fa51a5f9128c165af5893f82d0b81b9ef2 /tools/patman | |
parent | 949775689e58cf7ebf96b9da7f259820e8ad4f32 (diff) | |
download | u-boot-e1db5c9b08b81754c9467d0e515ce613dbab60f9.tar.gz u-boot-e1db5c9b08b81754c9467d0e515ce613dbab60f9.tar.xz u-boot-e1db5c9b08b81754c9467d0e515ce613dbab60f9.zip |
patman: When no tracking branch is provided, tell the user
The user can either count the number of patches, or provide a
tracking branch.
Signed-off-by: Nicolas Boichat <drinkcat@chromium.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman')
-rw-r--r-- | tools/patman/control.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/patman/control.py b/tools/patman/control.py index 8f4afeab18..67e8f397ef 100644 --- a/tools/patman/control.py +++ b/tools/patman/control.py @@ -48,8 +48,9 @@ def prepare_patches(col, branch, count, start, end, ignore_binary): count = (gitutil.CountCommitsToBranch(branch) - start) if not count: - sys.exit(col.Color(col.RED, - 'No commits found to process - please use -c flag')) + str = 'No commits found to process - please use -c flag, or run:\n' \ + ' git branch --set-upstream-to remote/branch' + sys.exit(col.Color(col.RED, str)) # Read the metadata from the commits to_do = count - end |