-
Notifications
You must be signed in to change notification settings - Fork 1
/
up.bat
30 lines (22 loc) · 996 Bytes
/
up.bat
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
if "%gitUser%"=="" (set gitUser=QGB)
if "%gitMail%"=="" (set [email protected])
@rem 更换用户名 需要在 【凭据管理器】》【Windows】 中删除原来的
for %%a in ("%cd%") do set gitRepo=%%~nxa
git pull cq master
@rem 如果没有国内git加速,需要改为 origin
for %%i in (%~dp0) do @set wsDriver=%%~di
set QGB=%wsDriver%\QGB\
if not defined ws (set ws=%wsDriver%\QGB\babun\cygwin\home\qgb\wshell\)
if "%*"=="" (for /f "delims=" %%i in ('%ws%datetime.bat') do set commit_msg=%%i ) else (set commit_msg=%*)
if "%commit_msg%"=="" (set commit_msg="default up")
git config --global user.email %gitMail%
git config --global user.name %gitUser%
git config --global http.sslverify "false"
git config --global core.filemode false
git config --global credential.helper store
git remote add q https://github.com/%gitUser%/%gitRepo%
git remote add cq https://coding.net/u/%gitUser%/p/%gitRepo%/git/
git add -A
git commit -m "%commit_msg%"
git push cq master
git push q master