Hi.
On a local server I have a repository build with git init and outside a clone build with git init --bare project.git.
When I push my changes to this server to project.git after this I have to pull this changes from project.git to the main repository manual. I go into the project.git directory on the server and perform
git push /path/to/the/repository/directory master:master.
How to manage this automaticaly after push my changes to project.git
I hope you could understand what I meant.
Hi,
you should probably set the remote origin of your local repository.
You can do this with a command, similar to the following (for github):
git remote set-url origin git@github.com:USERNAME/OTHERREPOSITORY.git
for more info:
http://stackoverflow.com/questions/7259535/setting-up-a-remote-origin
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.