1
0
mirror of https://github.com/openSUSE/osc.git synced 2026-03-11 03:25:57 +01:00

Update gitea_api.Git.get_branch_head() to take optional argument 'remote'

This commit is contained in:
2026-02-26 14:00:09 +01:00
parent 6e9a92601d
commit 92e8a3668e

View File

@@ -186,10 +186,16 @@ class Git:
except subprocess.CalledProcessError:
return False
def get_branch_head(self, branch: Optional[str] = None) -> str:
def get_branch_head(self, branch: Optional[str] = None, *, remote: Optional[str] = None) -> str:
if not branch:
branch = self.current_branch
if remote:
try:
return self._run_git(["rev-parse", f"refs/remotes/{remote}/{branch}"], mute_stderr=True)
except subprocess.CalledProcessError:
raise exceptions.GitObsRuntimeError(f"Unable to retrieve HEAD from remote '{remote}', branch '{branch}'. Does the branch exist?")
try:
return self._run_git(["rev-parse", f"refs/heads/{branch}"], mute_stderr=True)
except subprocess.CalledProcessError: