diff options
author | Jason Chang <jasonnc@google.com> | 2023-05-26 12:44:50 -0700 |
---|---|---|
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2023-08-15 22:14:52 +0000 |
commit | 8914b1f86db3903e507b26979f6f137907ea3398 (patch) | |
tree | 6ee19bd7e0f81cccc681729b309a14486787969f /command.py | |
parent | 082487dcd135463313d772cff19b685ea8623793 (diff) | |
download | git-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.py | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -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 | ||
509 | class 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 | |||
515 | class GitcClientCommand(object): | 507 | class 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.""" |