diff options
author | Josip Sokcevic <sokcevic@google.com> | 2024-12-03 21:29:01 +0000 |
---|---|---|
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2024-12-03 22:27:56 +0000 |
commit | cf411b3f03c3bd6001701136be5a874a85f1dc91 (patch) | |
tree | d4e78902f1cfb5664622e071fe82926bf7106efb /project.py | |
parent | 1feecbd91eac1b4a30e74f5356b61607d13ce89f (diff) | |
download | git-repo-cf411b3f03c3bd6001701136be5a874a85f1dc91.tar.gz |
Remove gitc support from repo
gitc is no longer available.
Change-Id: I0cbfdf936832f2cdd4876104ae3cc5a6e26154e2
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/444841
Reviewed-by: Gavin Mak <gavinmak@google.com>
Commit-Queue: Josip Sokcevic <sokcevic@google.com>
Tested-by: Josip Sokcevic <sokcevic@google.com>
Diffstat (limited to 'project.py')
-rw-r--r-- | project.py | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -576,7 +576,6 @@ class Project: | |||
576 | dest_branch=None, | 576 | dest_branch=None, |
577 | optimized_fetch=False, | 577 | optimized_fetch=False, |
578 | retry_fetches=0, | 578 | retry_fetches=0, |
579 | old_revision=None, | ||
580 | ): | 579 | ): |
581 | """Init a Project object. | 580 | """Init a Project object. |
582 | 581 | ||
@@ -609,7 +608,6 @@ class Project: | |||
609 | only fetch from the remote if the sha1 is not present locally. | 608 | only fetch from the remote if the sha1 is not present locally. |
610 | retry_fetches: Retry remote fetches n times upon receiving transient | 609 | retry_fetches: Retry remote fetches n times upon receiving transient |
611 | error with exponential backoff and jitter. | 610 | error with exponential backoff and jitter. |
612 | old_revision: saved git commit id for open GITC projects. | ||
613 | """ | 611 | """ |
614 | self.client = self.manifest = manifest | 612 | self.client = self.manifest = manifest |
615 | self.name = name | 613 | self.name = name |
@@ -639,7 +637,6 @@ class Project: | |||
639 | self.linkfiles = [] | 637 | self.linkfiles = [] |
640 | self.annotations = [] | 638 | self.annotations = [] |
641 | self.dest_branch = dest_branch | 639 | self.dest_branch = dest_branch |
642 | self.old_revision = old_revision | ||
643 | 640 | ||
644 | # This will be filled in if a project is later identified to be the | 641 | # This will be filled in if a project is later identified to be the |
645 | # project containing repo hooks. | 642 | # project containing repo hooks. |