non important commit

This commit is contained in:
maxstrb 2025-10-04 14:57:50 +02:00
parent 818e1caf93
commit 69cac30da8

View file

@ -46,17 +46,20 @@
rm "init.sh" rm "init.sh"
} }
git init
git add .
git commit -m "Project setup"
if $local { if $local {
print "You are all done" print "You are all done"
exit 0 exit 0
} }
git init tea repos create --name $name
git add . git remote add origin $"https://git.silvers.fun/max_ag/($name).git"
git commit -m "Project setup" git push -u origin main
print "You are all done" print "You are all done"
exit 0 exit 0
} }
'') '')