Скрипт для git-репозиториев

This commit is contained in:
2025-12-28 17:15:24 +07:00
parent 7f4d6f84e4
commit 0a1feb7937

12
scripts/git-clone.bat Normal file
View File

@@ -0,0 +1,12 @@
@echo off
set /p GIT_URL="Enter the Git repository URL (e.g., https://github.com/user/repo.git): "
if "%GIT_URL%"=="" (
echo Please enter a valid Git repository URL.
) else (
git clone %GIT_URL%
)
echo Press any key to continue...
pause > nul