How to configure git to avoid accidental git push - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T09:52:33Z http://stackoverflow.com/feeds/question/527833 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/527833/how-to-configure-git-to-avoid-accidental-git-push 8 How to configure git to avoid accidental git push Banengusk 2009-02-09T11:44:40Z 2009-09-24T13:00:51Z <p>After git clone, the config in the new repo looks like:</p> <pre><code>remote.origin.url=&lt;some url&gt; remote.origin.fetch=+refs/heads/*:refs/remotes/origin/* branch.master.remote=origin branch.master.merge=refs/heads/master </code></pre> <p>Then, I can execute "git pull" and "git push". But I'm interested in only do "git pull", because I want to push into another repo.</p> <p>One thing I can do is:</p> <pre><code>git add remote repo-for-push &lt;some other url&gt; git push repo-for-push master </code></pre> <p>But I would like to configure git to use default and distinct repositories for pull and push, i.e:</p> <pre><code>git pull # pulls from origin git push # pushes into repo-for-push, avoiding accidental push into the origin </code></pre> <p>How can this be configured? Thanks in advance.</p> <p>EDIT:<br /> Basically, I want to setup the default push repo to be different from the default fetch/pull repo.</p> http://stackoverflow.com/questions/527833/how-to-configure-git-to-avoid-accidental-git-push/529635#529635 5 Answer by Emil for How to configure git to avoid accidental git push Emil 2009-02-09T19:55:08Z 2009-02-09T19:55:08Z <p>I'm not sure you can actually do this in git today. The implementation of git-fetch (in builtin-fetch.c) and git-push (in builtin-push.c) both call the internal function remote_get(NULL) to identify the default repository to pull-from/push-to.</p> <p>One option would be to create an alias that specifies your desired repo. For example:</p> <pre><code>git config --add alias.mypush "push repo-for-push" </code></pre> <p>Then you could:</p> <pre><code>git mypush </code></pre> <p>to push to your desired repo. Not precisely what you want, of course. (You may also consider the --repo argument to push; see <a href="http://kerneltrap.org/mailarchive/git/2008/10/7/3537694" rel="nofollow">http://kerneltrap.org/mailarchive/git/2008/10/7/3537694</a> for a recent doc update that clarifies the --repo argument.)</p> http://stackoverflow.com/questions/527833/how-to-configure-git-to-avoid-accidental-git-push/595736#595736 0 Answer by skiphoppy for How to configure git to avoid accidental git push skiphoppy 2009-02-27T17:25:28Z 2009-03-03T05:22:58Z <p>If you could do all of your pushing from another branch, I think you could configure that branch to have its own separate repository to push to:</p> <pre><code>git checkout master git branch outbound git remote add destination &lt;some url&gt; git config branch.outbound.remote destination </code></pre> <p>I haven't tried this, and you may need to do some more work to create a complete solution. It also might not work for you, if you have to push from master.</p> http://stackoverflow.com/questions/527833/how-to-configure-git-to-avoid-accidental-git-push/817345#817345 6 Answer by iny for How to configure git to avoid accidental git push iny 2009-05-03T15:46:18Z 2009-05-03T15:46:18Z <p>Looks like</p> <pre><code>git config remote.origin.receivepack /bin/false </code></pre> <p>Makes push to remote origin fail.</p> http://stackoverflow.com/questions/527833/how-to-configure-git-to-avoid-accidental-git-push/998442#998442 0 Answer by for How to configure git to avoid accidental git push 2009-06-15T21:15:44Z 2009-06-15T21:27:13Z <p>Wrap the "git" command in something that eats the push argument. Off the top of my head I wrote this:</p> <pre> ~$ cat /usr/local/bin/git #!/bin/bash # git wrapper # prevents pushing to repository declare -a args declare msg='' while [ $# -gt 0 ] do if [ "$1" != 'push' ]; then args=( "${args[@]}" "$1" ) else msg="No pushing" fi shift done if [ ${#msg} -gt 0 ]; then echo "$msg" fi /usr/bin/git "${args[@]}" </pre> <p>Just be sure to have the wrapped command in your path before the "real" git command.</p> http://stackoverflow.com/questions/527833/how-to-configure-git-to-avoid-accidental-git-push/1397266#1397266 2 Answer by Novelocrat for How to configure git to avoid accidental git push Novelocrat 2009-09-09T02:25:04Z 2009-09-24T13:00:51Z <p>In the very latest feature release, <a href="http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.6.4.txt" rel="nofollow">1.6.4</a>, Git gained the ability to have a remote pull from one URL and push to another, using the <code>remote.name.pushurl</code> config setting. I can imagine weird behavior if the push-repository doesn't track the pull-repository, but I suspect Git will just try to fast-forward the push-repository from the current/tracking/matching branch(es) without regard for what it will pull when it asks the remote of the same name.</p> <p>For instance, if you wanted to pull via anonymous git protocol, but push via SSH (maybe you need a value off a SecurID token or something to authenticate):</p> <pre><code>[remote "myremote"] url = git://server/path pushurl = user@server:/path </code></pre>