Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(412)

Unified Diff: git_cl.py

Issue 94033007: Add "in the commit queue" state to git cl status colors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cl.py
===================================================================
--- git_cl.py (revision 239015)
+++ git_cl.py (working copy)
@@ -1114,11 +1114,12 @@
"""Show status of changelists.
Colors are used to tell the state of the CL unless --fast is used:
- - Green LGTM'ed
- - Blue waiting for review
- - Yellow waiting for you to reply to review
- - Red not sent for review or broken
- - Cyan was committed, branch can be deleted
+ - Red not sent for review or broken
+ - Blue waiting for review
+ - Yellow waiting for you to reply to review
+ - Green LGTM'ed
+ - Magenta in the commit queue
+ - Cyan was committed, branch can be deleted
Also see 'git cl comments'.
"""
@@ -1185,6 +1186,9 @@
elif props.get('closed'):
# Issue is closed.
color = Fore.CYAN
+ elif props.get('commit'):
+ # Issue is in the commit queue.
+ color = Fore.MAGENTA
elif r:
# Was LGTM'ed.
color = Fore.GREEN
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698