summaryrefslogtreecommitdiffstats
path: root/subcmds/sync.py
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2021-06-14 16:05:19 -0400
committerMike Frysinger <vapier@google.com>2021-06-15 06:07:37 +0000
commit4f21054c2841809da5e1e600b1cc765811288a80 (patch)
tree326156bb4407124de07207847bd9e4587124e37d /subcmds/sync.py
parent5ba2120362ceb49b89e0536108792fd7c824e28a (diff)
downloadgit-repo-4f21054c2841809da5e1e600b1cc765811288a80.tar.gz
commands: document the "common" class attribute
Switch it to uppercase to make it clear it's a constant, and add documentation so its usage is clear. Change-Id: I6d281a66a90b5908b3131585c9945e88cfe815ea Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/309322 Reviewed-by: Raman Tenneti <rtenneti@google.com> Tested-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'subcmds/sync.py')
-rw-r--r--subcmds/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py
index 67d9c115..b15d9477 100644
--- a/subcmds/sync.py
+++ b/subcmds/sync.py
@@ -66,7 +66,7 @@ _ONE_DAY_S = 24 * 60 * 60
66 66
67class Sync(Command, MirrorSafeCommand): 67class Sync(Command, MirrorSafeCommand):
68 jobs = 1 68 jobs = 1
69 common = True 69 COMMON = True
70 helpSummary = "Update working tree to the latest revision" 70 helpSummary = "Update working tree to the latest revision"
71 helpUsage = """ 71 helpUsage = """
72%prog [<project>...] 72%prog [<project>...]