Add touch-ready Filament login and admin update tooling
This commit is contained in:
16
git-sync.bat
Normal file
16
git-sync.bat
Normal file
@@ -0,0 +1,16 @@
|
||||
@echo off
|
||||
setlocal
|
||||
|
||||
for /f "delims=" %%b in ('git rev-parse --abbrev-ref HEAD') do set "BRANCH=%%b"
|
||||
|
||||
if "%BRANCH%"=="" (
|
||||
echo Unable to determine current branch.
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
git pull --ff-only origin "%BRANCH%"
|
||||
if errorlevel 1 (
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
echo Git synchronization complete.
|
||||
Reference in New Issue
Block a user