summaryrefslogtreecommitdiffstats
path: root/command.py
diff options
context:
space:
mode:
authorJason Chang <jasonnc@google.com>2023-05-26 12:44:50 -0700
committerLUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-08-15 22:14:52 +0000
commit8914b1f86db3903e507b26979f6f137907ea3398 (patch)
tree6ee19bd7e0f81cccc681729b309a14486787969f /command.py
parent082487dcd135463313d772cff19b685ea8623793 (diff)
downloadgit-repo-8914b1f86db3903e507b26979f6f137907ea3398.tar.gz
gitc: drop support
Bug: b/282775958 Change-Id: Ib6383d6fd82a017d0a6670d6558a905d41be321f Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/375314 Reviewed-by: Mike Frysinger <vapier@google.com> Tested-by: Jason Chang <jasonnc@google.com> Commit-Queue: Jason Chang <jasonnc@google.com>
Diffstat (limited to 'command.py')
-rw-r--r--command.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/command.py b/command.py
index d2129381..0205932d 100644
--- a/command.py
+++ b/command.py
@@ -75,7 +75,6 @@ class Command(object):
75 repodir=None, 75 repodir=None,
76 client=None, 76 client=None,
77 manifest=None, 77 manifest=None,
78 gitc_manifest=None,
79 git_event_log=None, 78 git_event_log=None,
80 outer_client=None, 79 outer_client=None,
81 outer_manifest=None, 80 outer_manifest=None,
@@ -84,7 +83,6 @@ class Command(object):
84 self.client = client 83 self.client = client
85 self.outer_client = outer_client or client 84 self.outer_client = outer_client or client
86 self.manifest = manifest 85 self.manifest = manifest
87 self.gitc_manifest = gitc_manifest
88 self.git_event_log = git_event_log 86 self.git_event_log = git_event_log
89 self.outer_manifest = outer_manifest 87 self.outer_manifest = outer_manifest
90 88
@@ -506,11 +504,5 @@ class MirrorSafeCommand(object):
506 """ 504 """
507 505
508 506
509class GitcAvailableCommand(object):
510 """Command that requires GITC to be available, but does not require the
511 local client to be a GITC client.
512 """
513
514
515class GitcClientCommand(object): 507class GitcClientCommand(object):
516 """Command that requires the local client to be a GITC client.""" 508 """Command that requires the local client to be a GITC client."""