Skip to content

Instantly share code, notes, and snippets.

@deprilula28
Created April 5, 2017 17:30
Show Gist options
  • Save deprilula28/04431e1f58fbf6051905b272832dacfa to your computer and use it in GitHub Desktop.
Save deprilula28/04431e1f58fbf6051905b272832dacfa to your computer and use it in GitHub Desktop.
@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