diff --git a/Uzuy X - Tool.bat b/Uzuy X - Tool.bat new file mode 100644 index 000000000..e9d107761 --- /dev/null +++ b/Uzuy X - Tool.bat @@ -0,0 +1,41 @@ +@echo off +title Uzuy X - Tool + +REM Phoenix ASCII Logo +echo. +echo  /\ +echo  //\\ +echo  // \\ +echo  // \\ +echo  // \\ +echo  //________\\ +echo  \\ / +echo  \\ / +echo  \\ / +echo  \\ / +echo  \/ +echo Proceed with warning! +timeout /t 5 + +REM Remove old remote and add new remote +git remote remove origin +git remote add origin https://git.uzuy-edge.org/Uzuy-Edge/Uzuy.git + +REM Show current remotes +git remote -v + +REM Push all branches +echo Proceeding with force push +git push --force --all origin + +REM Ask user if they want to push tags +set /p includeTags="Do you want to push tags? (y/n): " + +if /i "%includeTags%"=="y" ( + git push --force --tags origin + echo Tags pushed. +) else ( + echo Tags not pushed. +) + +pause \ No newline at end of file