0

I have some repos cloned from http://drupal.org/project/ For work behind firewall, I want to import these cloned project to my local git server. How can I do that?

olragon
  • 35
  • 5

1 Answers1

0

Each cloned repository can be used as a server.

If I correctly understand your needs, you just have to push to your own server from the checkout.

You can be interrested in some of the git push command like --all

So a command like git push --all <url of your repository>

slubman
  • 2,277
  • 16
  • 12