add *.aab/ipa to .gitignore_global in addition to *.apk

This commit is contained in:
Luk
2024-04-17 08:58:12 +08:00
parent 5eb26c69f9
commit 7d3cf98072
10 changed files with 52 additions and 137 deletions

View File

@@ -3,22 +3,15 @@
@REM 首先清除可能残留的变量
set ROOTPATH=
set ROOTPATH1=D:\faronear
set ROOTPATH2=C:\faronear
set ROOTPATH3=%HOMEDRIVE%%HOMEPATH%\faronear
@ if not "" == "%1" (
set ROOTPATH=%1
) else (
echo *** Testing Path [[%ROOTPATH1%]] [[%ROOTPATH2%]] [[%ROOTPATH3%]]
if exist "%ROOTPATH1%" (
set ROOTPATH=%ROOTPATH1%
) else if exist "%ROOTPATH2%" (
set ROOTPATH=%ROOTPATH2%
) else if exist "%ROOTPATH3%" (
set ROOTPATH=%ROOTPATH3%
) else (
set ROOTPATH=..\..
echo;
echo === Enter [root path]> or [leave blank] for default to [[%CD%]]
set /p ROOTPATH=">>> "
echo;
if "" == "%ROOTPATH%" (
set ROOTPATH=%CD%
)
)
@@ -30,7 +23,7 @@ if not exist %ROOTPATH% (
)
pushd %ROOTPATH%
echo *** Current path = [[%CD%]] ***
echo === Current path = [[%CD%]] ===
@REM for /d %%d in (*) do ( pushd %%d & ( for /d %%d in (*) do ( if exist %%d/.git pushd %%d & echo --- git pulling: %%d ... & git pull & popd ) ) & popd )