810d756be9
* Log a message with implicit URI changes Small update for #542 * Log a message with implicit URI changes Small update for #542 * Add helper scripts to update forks * fix: improve HTTP Local URL validation UX and styling specificity - Rename CSS class from generic "error" to "http-local-url-error" for better specificity - Rename "invalid-url" class to "http-local-invalid-url" for clarity - Disable httpServerCommandField when URL is invalid or transport not HTTP Local - Clear field value and tooltip when showing validation errors - Ensure field is re-enabled when URL becomes valid
18 lines
243 B
Batchfile
Executable File
18 lines
243 B
Batchfile
Executable File
@echo off
|
|
setlocal
|
|
|
|
git checkout main
|
|
if errorlevel 1 exit /b 1
|
|
|
|
git fetch -ap upstream
|
|
if errorlevel 1 exit /b 1
|
|
|
|
git fetch -ap
|
|
if errorlevel 1 exit /b 1
|
|
|
|
git rebase upstream/main
|
|
if errorlevel 1 exit /b 1
|
|
|
|
git push
|
|
if errorlevel 1 exit /b 1
|