Just say possible or not
+5
A:
Yes, possible, but not in the same directory.
You would have to git clone
each repository in its own directory on your local disk.
See How do you clone a git repository into a specific folder?; one option:
git clone [email protected]:whatever folder-name
This is not to be mixed up with git remote
, which allows you to declare several remotes from which you can git fetch (and then merge in your current git repo)
VonC
2010-06-21 07:27:28
I really should downvote for providing a much too comprehensive answer, OP requested a single word ;-)) (just kidding, +1 from me)
Andreas_D
2010-06-21 07:29:54
he he.. me too, but another +1 from me.. :)
Chathuranga Chandrasekara
2010-06-21 08:04:07
A:
Yes, it is possible. Just do git clone
in two different directories with two different repositories.
Skilldrick
2010-06-21 07:28:00