Files
bns_system/git_push.bat
2025-09-16 14:04:11 +09:00

11 lines
254 B
Batchfile

@echo off
cd /d "D:\workspace_bnssystem\bnssystem"
echo Adding all files to git...
git add .
echo Committing changes...
git commit -m "Initial commit - BNS System source code"
echo Pushing to remote repository...
git push -u origin main
echo Done!
pause