1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-09-05 20:58:42 +02:00

Merge pull request #1765 from dmach/git-obs-repo-clone-fix-parent

Fix setting parent remote in 'git-obs repo clone'
This commit is contained in:
2025-04-02 14:59:14 +02:00
committed by GitHub

View File

@@ -78,7 +78,8 @@ class Repo:
if repo_data["owner"]["login"] == user["login"]:
# we're cloning our own repo, setting remote to the parent (if exists)
parent = repo_data["parent"]
remotes["parent"] = parent["clone_url"] if anonymous else parent["ssh_url"]
if parent:
remotes["parent"] = parent["clone_url"] if anonymous else parent["ssh_url"]
else:
# we're cloning someone else's repo, setting remote to our fork (if exists)
from . import Fork