diff --git a/scripts/git-clone.bat b/scripts/git-clone.bat new file mode 100644 index 0000000..ea2898f --- /dev/null +++ b/scripts/git-clone.bat @@ -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