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.
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.
|
|
|
You can change the remote for pushing only using;
That will still let pulls work, but pushes will try to use the URL |
|||||||||
|
|
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
where |
|||
|
|
|
I guess you could just remove the remote repository from your list of remotes.
To find out the alias of the remote repository. Then
And add it back should there come a time when you want to push to that remote again. |
|||||||
|

