Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

sync.bat 652 B

12345678910111213141516171819202122232425262728
  1. :: Upload changes from inside repository using GIN CLI
  2. :: Assumes no submodules
  3. :checkerror
  4. err=%1
  5. msg=%2
  6. if %err% NEQ 0 (
  7. )
  8. EXIT /B
  9. set curdir=%~dp0
  10. for /f %%i in ('git -C %curdir% rev-parse --show-toplevel') do set projectdir=%%i
  11. cd %projectdir%
  12. gin sync
  13. CALL :checkerror %ERRORLEVEL% "Error occurred during 'gin sync'"
  14. gin commit .
  15. CALL :checkerror %ERRORLEVEL% "Error occurred during 'gin commit'"
  16. gin upload
  17. CALL :checkerror %ERRORLEVEL% "Error occurred during 'gin upload'"
  18. :: Uncomment below to download all large files
  19. :: gin get-content .
  20. :: CALL :checkerror %ERRORLEVEL% "Error occurred during 'gin get-content'"
  21. pause