>>107380355
Also, once you installed Neo, maybe you'd want to update it automatically every time you are using it (that's what I do and never had problems with stuff breaking from bad git pulls)
You can create a .bat file with this script that merges a git pull with credentials and a NeoForge start. Today the dev updated more stuff in ZiT
@echo off
set PYTHON=C:\Path\To\Your\sd-webui-forge-neo\python-3.11.9.amd64\python.exe
set GIT=
set VENV_DIR=venv
set COMMANDLINE_ARGS=--xformers --cuda-malloc --cuda-stream --sage --enable-insecure-extension-access
REM Navigate to Neo Forge directory
cd /d C:\Path\To\Your\sd-webui-forge-neo
REM Configure git user email
git config --global user.email "your.email@example.com"
REM Pull latest updates
echo Updating Neo Forge...
git pull
REM Launch webui
call webui.bat