Merge pull request 'Push to the remote when the repo changed' (#19) from push_it_baby into main

Reviewed-on: https://gitea.opensuse.org/importers/git-importer/pulls/19
This commit is contained in:
coolo 2022-11-08 09:48:56 +01:00
commit d1a8a3288d
2 changed files with 13 additions and 0 deletions

View File

@ -214,3 +214,14 @@ class Git:
print(response.data)
url = f"gitea@gitea.opensuse.org:{org_name}/{repo_name}.git"
self.repo.remotes.create("origin", url)
def push(self):
remo = self.repo.remotes["origin"]
keypair = pygit2.KeypairFromAgent("gitea")
callbacks = pygit2.RemoteCallbacks(credentials=keypair)
refspecs = ["refs/heads/factory"]
if "refs/heads/devel" in self.repo.references:
refspecs.append("refs/heads/devel")
remo.push(refspecs, callbacks=callbacks)

View File

@ -84,6 +84,8 @@ class GitExporter:
logging.debug(f"Committing {flat}")
self.commit_flat(flat, branch_state)
self.git.push()
def run_gc(self):
self.gc_cnt = self.gc_interval
self.git.gc()