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 am using git and I am doing my development work, which I don't want to push, even by mistake. Is there a method to disable push in certain local repository. One method is to rename the branch, another is to undo push if one does it by mistake, but I hope there should be more direct method.

share|improve this question

3 Answers

up vote 15 down vote accepted

You can change the remote for pushing only using;

git remote set-url --push origin no_push

That will still let pulls work, but pushes will try to use the URL no_push and fail.

share|improve this answer
Thanks. How to disable 'push of only a certain branch'? – user984260 Apr 21 '12 at 15:43
2  
@user984260: I guess you could set the remote for just that branch: git config branch.<branch-name>.remote no_push. But if the branch is a local development branch, with its own name, is it really a problem? It won't be pushed by default (git push with no arguments by default pushes only branches which exist both locally and on the remote) and even if you do push it, you're just creating a new branch on the remote which you can promptly delete. – Jefromi Apr 21 '12 at 16:51
Yes, you are right. Thanks. – user984260 Apr 21 '12 at 19:48

Depending on the remote, you may be able to reset its URL to use the read-only Git protocol instead of SSH or HTTPS. E.g., for a project on GitHub, do

git remote set-url <remote> git://github.com/Team/Project.git

where <remote> is commonly origin. git remote -v will give you a list of remotes; those that start with https or have the form <user>@<host>:<path> usually allow pushing.

share|improve this answer

I guess you could just remove the remote repository from your list of remotes.

git remote -v

To find out the alias of the remote repository.

Then

git remote rm <remote-alias>

And add it back should there come a time when you want to push to that remote again.

share|improve this answer
1  
But note that this will make pulling impossible as well. – larsmans Apr 21 '12 at 15:35
This is not a good answer, it makes pulling impossible. – Elijah Lynn Apr 19 at 15:51

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.