Created
April 5, 2017 17:30
-
-
Save deprilula28/04431e1f58fbf6051905b272832dacfa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo. | |
echo -=========- | |
echo. | |
echo Quick Cloner | |
echo. | |
echo ----------- | |
echo. | |
set /p to=Folder destination: | |
cd %to% | |
cls | |
echo. | |
echo -=========- | |
echo. | |
echo Quick Cloner | |
echo Destination: %to% | |
echo. | |
echo ----------- | |
echo. | |
set /p owner=Repository owner: | |
cls | |
echo. | |
echo -=========- | |
echo. | |
echo Quick Cloner | |
echo Destination: %to% | |
echo Repository: %owner%/... | |
echo. | |
echo ----------- | |
echo. | |
set /p name=Repository name: | |
cls | |
echo. | |
echo -=========- | |
echo. | |
echo Quick Cloner | |
echo Destination: %to% | |
echo Repository: %owner%/%name% | |
echo. | |
echo ----------- | |
echo. | |
git clone "https://github.com/%owner%/%name%" | |
echo. | |
echo -=========- | |
echo. | |
echo Done | |
echo. | |
echo -=========- | |
echo. | |
echo <> with <3 by deprilula28 | |
echo. | |
timeout /t 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment