I have a git repository on github.
I would like to migrate the master version of the repository to a local filesystem, and clone from this local filesystem copy.
How do I do so?
|
I have a git repository on github. I would like to migrate the master version of the repository to a local filesystem, and clone from this local filesystem copy. How do I do so? |
|||||||||
|
|
First, create your new repository by cloning your github repository:
If you want to delete your github repository, go to Then setup your new repository to be shared: http://www.google.com/search?q=serving+a+git+repository Finally, on all other clones of the github repository, change the url of origin:
|
|||||
|
|
There is no "master" repository when using Git, so all you need to do is Of course you can't instruct Github to pull from your local repository, so you will still need to use When you You can always change what the "origin" points to using the |
|||||||||||||
|