File size: 422 Bytes
8372e23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@echo off

git config user.name "anonymous"
git config user.email my@gmail.com

set /P comment=Comment?

if not "%comment%" == "" goto :next
set comment=auto
:next

git reset

::git add *.* --force
::git add *
git add --all

echo ----- git add done ------

git status

echo ready. press any key to commit START.
::timeout /t 1
pause

git commit -m "%comment%"

git push -u origin main

pause