summaryrefslogtreecommitdiffstats
path: root/subcmds/gitc_init.py
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2015-08-31 15:45:06 -0700
committerDan Willemsen <dwillemsen@google.com>2015-09-29 13:46:34 -0700
commit79360640f4c7d5f044973aa1bdb6fb0f8f311f05 (patch)
treede0228e9e44b05ad3da07d4e8829a90bebb3871f /subcmds/gitc_init.py
parent7b01b2fd01f4e37688242db19c93feb27f9b65c6 (diff)
downloadgit-repo-79360640f4c7d5f044973aa1bdb6fb0f8f311f05.tar.gz
Add GitcClientCommand class for GITC-specific commands
These won't show up as common commands in the help text unless in a GITC client, and will refuse to execute. Change-Id: Iffe82adcc9d6ddde9cb4b204f83ff018042bdab0
Diffstat (limited to 'subcmds/gitc_init.py')
-rw-r--r--subcmds/gitc_init.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/gitc_init.py b/subcmds/gitc_init.py
index c243bb3b..4f9d7344 100644
--- a/subcmds/gitc_init.py
+++ b/subcmds/gitc_init.py
@@ -18,12 +18,12 @@ import os
18import sys 18import sys
19 19
20import gitc_utils 20import gitc_utils
21from command import RequiresGitcCommand 21from command import GitcAvailableCommand
22from manifest_xml import GitcManifest 22from manifest_xml import GitcManifest
23from subcmds import init 23from subcmds import init
24 24
25 25
26class GitcInit(init.Init, RequiresGitcCommand): 26class GitcInit(init.Init, GitcAvailableCommand):
27 common = True 27 common = True
28 helpSummary = "Initialize a GITC Client." 28 helpSummary = "Initialize a GITC Client."
29 helpUsage = """ 29 helpUsage = """