mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-13 02:30:11 +01:00
fix(deploy): all files are uploaded if the index only mode deployment follows a full mode one
create new branches from groud up
This commit is contained in:
parent
1faf317aa7
commit
4daf039cb2
@ -707,7 +707,7 @@ def update_servergitmirrors(servergitmirrors, repo_section):
|
||||
progress=progress)
|
||||
|
||||
# Switch to the initial branch
|
||||
repo.git.checkout(GIT_BRANCH)
|
||||
repo.git.switch(GIT_BRANCH)
|
||||
if progress:
|
||||
progressbar.done()
|
||||
|
||||
@ -736,7 +736,7 @@ def upload_to_servergitmirror(mirror_config: Dict[str, str],
|
||||
if local_branch_name in local_repo.heads:
|
||||
local_repo.git.switch(local_branch_name)
|
||||
else:
|
||||
local_repo.git.switch('-c', local_branch_name)
|
||||
local_repo.git.switch('--orphan', local_branch_name)
|
||||
remote_branch_name = GIT_BRANCH
|
||||
|
||||
remote_url = mirror_config['url']
|
||||
|
Loading…
Reference in New Issue
Block a user