11 lines
254 B
Batchfile
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
|