autopush.bat 114 B

1234567
  1. @echo off
  2. set /p id="Enter commit notes: "
  3. del .\.git\index.lock
  4. git pull
  5. git add -A
  6. git commit -m "%id%"
  7. git push