mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-22 16:23:28 +01:00
Suppress detachedHead warnings
This commit is contained in:
parent
582b594789
commit
65c667cc37
@ -11,7 +11,7 @@ def run():
|
||||
helpers.log(f"Stable Diffusion UI's git repository was already installed. Updating from {branch_name}..")
|
||||
|
||||
helpers.run("git reset --hard", run_in_folder=app.project_repo_dir_path)
|
||||
helpers.run(f'git checkout "{branch_name}"', run_in_folder=app.project_repo_dir_path)
|
||||
helpers.run(f'git checkout -c advice.detachedHead=false "{branch_name}"', run_in_folder=app.project_repo_dir_path)
|
||||
helpers.run("git pull", run_in_folder=app.project_repo_dir_path)
|
||||
else:
|
||||
helpers.log("\nDownloading Stable Diffusion UI..\n")
|
||||
@ -23,4 +23,4 @@ def run():
|
||||
helpers.show_install_error(error_msg="Could not download Stable Diffusion UI")
|
||||
exit(1)
|
||||
|
||||
helpers.run(f'git checkout "{branch_name}"', run_in_folder=app.project_repo_dir_path)
|
||||
helpers.run(f'git checkout -c advice.detachedHead=false "{branch_name}"', run_in_folder=app.project_repo_dir_path)
|
||||
|
@ -23,7 +23,7 @@ def fetch_repo():
|
||||
|
||||
if not is_developer_mode:
|
||||
helpers.run("git reset --hard", run_in_folder=app.stable_diffusion_repo_dir_path)
|
||||
helpers.run(f'git checkout "{commit_id}"', run_in_folder=app.stable_diffusion_repo_dir_path)
|
||||
helpers.run(f'git checkout -c advice.detachedHead=false "{commit_id}"', run_in_folder=app.stable_diffusion_repo_dir_path)
|
||||
helpers.run("git pull", run_in_folder=app.stable_diffusion_repo_dir_path)
|
||||
else:
|
||||
helpers.log("\nDownloading Stable Diffusion..\n")
|
||||
@ -35,7 +35,7 @@ def fetch_repo():
|
||||
helpers.show_install_error(error_msg="Could not download Stable Diffusion")
|
||||
exit(1)
|
||||
|
||||
helpers.run(f'git checkout "{commit_id}"', run_in_folder=app.stable_diffusion_repo_dir_path)
|
||||
helpers.run(f'git checkout -c advice.detachedHead=false "{commit_id}"', run_in_folder=app.stable_diffusion_repo_dir_path)
|
||||
|
||||
def apply_patches():
|
||||
if is_developer_mode:
|
||||
|
Loading…
Reference in New Issue
Block a user