I have fixed network of git remotes and I would like them to be attached to repository. Unfortunately git-clone doesn't clone remotes. Is there a way around it?

link|improve this question

62% accept rate
you found the way to solve this ?maybe make a script, and use a .gitremotes file similar to .gitmodules – JuanPablo Oct 8 '11 at 22:26
feedback

4 Answers

There is no way to do this with git, as far as I know.

Telling users to run scripts post-clone is what people tend to do. If it's a ruby project, you probably have rake, for example, so you could have a rake post_install task.

link|improve this answer
Is there clone hook in git that could automatize it? – Łukasz Lew Oct 15 '09 at 13:01
hooks get created locally when the repository is initialized by whatever implementation of Git is used to clone the repository. – Jörg W Mittag Oct 15 '09 at 13:24
feedback

Remotes are saved in .git/config file of a repo, you can extract your favorites and append them on every clone.

link|improve this answer
feedback

You could define them in your global config file ~/.gitconfig instead of your project's .git/config. Be careful though... if you run git remote update in a project it will pull down all remotes, even for repositories completely unrelated to the one you're working on.

link|improve this answer
feedback

I begin this command

https://github.com/juanpabloaj/git-remote-init

for save the remotes in a .gitremotes file

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.