Files
ClaudeProjectManager/scripts/fix_remote_organization.bat
Claude Project Manager 4dab418f2f Initial commit
2025-07-09 22:10:42 +02:00

24 Zeilen
473 B
Batchfile

@echo off
echo Fixing Git Remote for IntelSight Organization
echo =============================================
echo.
echo Current remote:
git remote -v
echo.
echo Removing old remote...
git remote remove origin
echo Adding new remote for IntelSight organization...
git remote add origin https://gitea-undso.intelsight.de/IntelSight/website-main.git
echo.
echo New remote:
git remote -v
echo.
echo Now push to the new remote:
echo git push -u origin master
echo.
pause