Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I pulled the project from remote server and i have done some changes to local workig copy, now I need an advice on how to push my working copy of project to local git server. How can I do that?

share|improve this question

1 Answer

up vote 2 down vote accepted

You should add a new remote to your working repository that points to the "local git server". For example you might add a remote called local:

git remote add local git://myserver/myproject.git

Then you can simply push your commits to the local repository:

git commit -m "I've changed this and that"
git push local
share|improve this answer
thanks, but the files from remote repository have been pushed to local server repository, even if i do : $ git add . before $ git push local – Ritam Nemira Feb 1 '12 at 12:12
I'm not sure I'm following you. Correct me if I'm wrong: 1) You pulled a project from a remote repository with git pull git://remoteserver/project.git 2) You commited some changes to your working copy with git add . followed by git commit -m "My changes" 3) You want to push the changes from your working copy to another repository that you call local. Is this correct? – Enrico Campidoglio Feb 1 '12 at 12:30
I forgot to git commit -m . Enrico Thanks! – Ritam Nemira Feb 1 '12 at 12:47
I'm glad it worked out :) – Enrico Campidoglio Feb 1 '12 at 12:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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