24 Zeilen
473 B
Batchfile
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 |