Im just learning git and there is something I cant work out. After creating and using a git repository locally on my Mac, can I push a copy to another server somewhere else? I am behind a firewall so unfortunately I can't run git clone from the other machine.
|
|
|||
|
|
Example:
See the docs for EDIT: Note that the OP indicated that he created the git repo locally. Unless I'm missing something, I believe he'll need to follow the steps in this answer before he can do a git push. git push/clone to new server |
|||||||||
|
|
What you may want to do is first, on your local machine, make a bare clone of the repository
Now, archive up the new repo.git directory using tar/gzip or whatever your favorite archiving tool is and then copy the archive to the server. Unarchive the repo on your server. You'll then need to set up a remote on your local repository:
You will then be able to push to and pull from the remote repo with:
|
|||||||||||||||||||||
|
|
There are many ways to move repositories around, The most efficient way is to use an external repository somewhere (use GitHub or set up Gitosis), and then |
||||
|
|
|
You can push a branch to a remote server, say github. You would first have to do the initial project setup, then clone your project and:
|
|||
|
|