code organize & cleanup

This commit is contained in:
deffcolony
2024-07-07 16:27:53 +02:00
parent f4f1561361
commit e92a0d668b
14 changed files with 1889 additions and 57 deletions

View File

@@ -0,0 +1,17 @@
@echo off
:fix_github_conflicts
echo %blue_bg%[%time%]%reset% %blue_fg_strong%[INFO]%reset% Trying to resolve unresolved conflicts in the working directory or unmerged files...
cd /d "%st_install_path%"
git merge --abort
git reset --hard
git pull --rebase --autostash
echo %blue_bg%[%time%]%reset% %blue_fg_strong%[INFO]%reset% Done.
pause
if "%caller%"=="home" (
exit /b 1
) else (
exit /b 0
)