11 lines
244 B
Batchfile
11 lines
244 B
Batchfile
|
|
@echo off
|
||
|
|
cd /d "D:\workspace_bnssystem\bnssystem"
|
||
|
|
echo Adding files...
|
||
|
|
git add .
|
||
|
|
echo Committing...
|
||
|
|
git commit -m "Fix shell script permissions for server deployment"
|
||
|
|
echo Pushing to remote...
|
||
|
|
git push origin master
|
||
|
|
echo Push completed!
|
||
|
|
pause
|