Is it possible to clone the same repository multiple times with Github for Windows? The reason I ask is I want to clone the Laravel framework multiple times, once for each project I'm using it for.
Asked
Active
Viewed 1.8k times
15
-
I figured out this is pretty easy to do with Git for Windows since you can clone into any directory, but still would like to know if its possible with Github for Windows – Tesla Nov 16 '12 at 00:27
-
I hate to be _that guy_, but why use Github for Windows in the first place? There are other alternatives that simplify Git without being as restrictive, like [TortoiseGit](http://code.google.com/p/tortoisegit/). – Matt Kline Nov 20 '12 at 02:16
-
2If you couldn't do that, I'd suggest you to contact GitHub. They tend to reply quickly, and maybe you can get this bug solved/feature implemented in a near future. – mgarciaisaia Nov 20 '12 at 04:13
-
You should get used to the thought that GitHub for Windows is only made for the very few most common usecases. The one you're asking for is simply a usecase for "plain vanilla Git" and is dead easy to do with it. – Nils Werner Nov 20 '12 at 13:22
-
1Also see this question for an alternative workaround: http://stackoverflow.com/questions/11000336/cloning-multiple-branches-in-github-for-windows – Pieter Müller Apr 02 '13 at 06:36
1 Answers
17
It is possible, and it is simple enough
In git bash:
git clone <repo> <directory>
git clone <repo> <directory_2>
.............................
git clone <repo> <directory_N-1>
git clone <repo> <directory_N>
Repo is your repository URL, and all those directory[N] are your desired directory names
Also, why not just make a copy of an already cloned repo to another directory?

baldrs
- 2,132
- 25
- 34
-
making a copy does not show it in the list , local or github since it has same git info I guess – Benn Nov 24 '12 at 22:46
-
it really doesn't matter, each cloned copy of a repo is the same as any other (assuming there were no new commits between clone operations). To show an repository in your repo list on github you need to fork it, not just clone. – baldrs Nov 30 '12 at 08:23