aboutsummaryrefslogtreecommitdiff
path: root/repo_push.bat
blob: 8d6b17b2c2ee07ffcabd98a75f5ec01255b0f1b5 (plain)
1
2
3
4
5
6
7
8
@echo off
set /p commit_comment=Enter commit message: 

git add .
git commit -m "%commit_comment%"
git push

echo Changes have been committed! Back to work...