31 Zeilen
850 B
Batchfile
31 Zeilen
850 B
Batchfile
@echo off
|
|
echo Fixing Authentication for website-main
|
|
echo =====================================
|
|
echo.
|
|
|
|
cd C:\Users\hendr\Desktop\IntelSight\website-main
|
|
|
|
echo Current remote:
|
|
git remote -v
|
|
echo.
|
|
|
|
echo Removing old remote...
|
|
git remote remove origin
|
|
|
|
echo Adding authenticated remote...
|
|
echo NOTE: Replace USERNAME and TOKEN with your actual Gitea credentials!
|
|
echo.
|
|
echo Example:
|
|
echo git remote add origin https://USERNAME:TOKEN@gitea-undso.intelsight.de/IntelSight/website-main.git
|
|
echo.
|
|
echo Your current credentials from ClaudeProjectManager:
|
|
echo Username: StuXn3t
|
|
echo Token: 327caf5e04a43c35e67e0fb00e0a9cd269889db9
|
|
echo.
|
|
echo Run this command:
|
|
echo git remote add origin https://StuXn3t:327caf5e04a43c35e67e0fb00e0a9cd269889db9@gitea-undso.intelsight.de/IntelSight/website-main.git
|
|
echo.
|
|
echo Then:
|
|
echo git push -u origin master
|
|
echo.
|
|
pause |