Скрипт для git-репозиториев
This commit is contained in:
12
scripts/git-clone.bat
Normal file
12
scripts/git-clone.bat
Normal 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
|
||||||
Reference in New Issue
Block a user