mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-21 20:00:17 +08:00
no pager on git log and pull
to prevent stops when output is long
This commit is contained in:
parent
c3a59c8e40
commit
7ac280ae3f
@ -88,10 +88,10 @@ for /f "delims=" %%R in ('git rev-parse @{u}') do set REMOTE=%%R
|
|||||||
if NOT "%LOCAL%"=="%REMOTE%" (
|
if NOT "%LOCAL%"=="%REMOTE%" (
|
||||||
echo.
|
echo.
|
||||||
echo [INFO] Update available. New commits:
|
echo [INFO] Update available. New commits:
|
||||||
git log --oneline %LOCAL%..%REMOTE%
|
git --no-pager log --oneline %LOCAL%..%REMOTE%
|
||||||
echo.
|
echo.
|
||||||
echo [INFO] Pulling updates...
|
echo [INFO] Pulling updates...
|
||||||
git pull
|
git --no-pager pull
|
||||||
) else (
|
) else (
|
||||||
echo [INFO] Already up to date.
|
echo [INFO] Already up to date.
|
||||||
)
|
)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user