Attach and Play.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
AnP/push.bat

12 lines
150 B

@echo off
if "%~1" == "" (
set /p text="Text commit: "
) else (
set text=%~1
)
git pull
git add .
git commit -m "%text%"
git push