Updated gitcommitpush.bat

This commit is contained in:
Benjamin Rosseaux 2025-04-03 12:22:38 +02:00
commit baae4ac5c2

View file

@ -1,4 +1,8 @@
@echo off
call git commit -am "More work"
call git push
set /p commit_message="Enter commit message (or leave blank for default): "
if "%commit_message%"=="" (
set commit_message=More work
)
git commit -am "%commit_message%"
git push
rem --set-upstream origin master