Last active
September 28, 2022 02:53
-
-
Save alwerner/3394774 to your computer and use it in GitHub Desktop.
git clone to root Source: http://stackoverflow.com/questions/651038/how-do-you-clone-a-git-repository-into-a-specific-folder
This file contains hidden or 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
If you are in the directory you want the contents of the git repository dumped to, run: | |
git clone [email protected]:whatever . | |
The "." at the end specifies the current folder as the checkout folder. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice one... it works like magic... Thank you