summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2019-10-01 01:17:55 -0400
committerMike Frysinger <vapier@google.com>2019-10-05 05:24:34 +0000
commitf1c5dd8a0fdfa6ef916ea1befea9c44a10eae73f (patch)
tree21906ee8c28f9e641f7a5a6e9f40ef31d2f945ac
parent2058c6364180a899bc17b8cefba193f931ef4493 (diff)
downloadgit-repo-f1c5dd8a0fdfa6ef916ea1befea9c44a10eae73f.tar.gz
git-repo-f1c5dd8a0fdfa6ef916ea1befea9c44a10eae73f.zip
info: fix "current" output
The "Current revision" field shows the revision as listed in the manifest. I think most users expect this to show the revision that the git tree is checked out to instead. Switch the output to show that revision instead, and add a "Current branch" if it matches a local branch. Change-Id: Ib546f5ebbc8a23875fbd14bf166fbe95b7dd244e Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/239240 Reviewed-by: David Pursehouse <dpursehouse@collab.net> Tested-by: Mike Frysinger <vapier@google.com>
-rw-r--r--subcmds/info.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/subcmds/info.py b/subcmds/info.py
index 0d5696ddb..b1e92e3e4 100644
--- a/subcmds/info.py
+++ b/subcmds/info.py
@@ -94,13 +94,19 @@ class Info(PagedCommand):
self.out.nl()
self.heading("Current revision: ")
- self.headtext(p.revisionExpr)
+ self.headtext(p.GetRevisionId())
self.out.nl()
+ currentBranch = p.CurrentBranch
+ if currentBranch:
+ self.heading('Current branch: ')
+ self.headtext(currentBranch)
+ self.out.nl()
+
localBranches = list(p.GetBranches().keys())
self.heading("Local Branches: ")
self.redtext(str(len(localBranches)))
- if len(localBranches) > 0:
+ if localBranches:
self.text(" [")
self.text(", ".join(localBranches))
self.text("]")