Unable to Git-push master to Github - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T10:02:40Z http://stackoverflow.com/feeds/question/922210 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/922210/unable-to-git-push-master-to-github 2 Unable to Git-push master to Github Masi 2009-05-28T17:36:45Z 2009-10-06T22:32:55Z <p>This question is related to my problem in <a href="http://stackoverflow.com/questions/904353/unable-to-understand-git-branch-merge-and-rebase/907799#907799">understanding rebase, branch and merge</a>, and to the problem</p> <blockquote> <p>How can you commit to your github account as you have a teamMate in your remote list?</p> </blockquote> <p>I found out that <a href="http://ubuntuforums.org/showthread.php?t=850161" rel="nofollow">other people</a> have had the same problem. The problem seems to be related to /etc/xinet.d/.</p> <p><strong>Problem:</strong> unable to push my local branch to my master branch at Github</p> <p>I run</p> <pre><code>git push origin master </code></pre> <p>I get </p> <pre><code>fatal: 'origin' does not appear to be a git repository fatal: The remote end hung up unexpectedly </code></pre> <p>The error message suggests me that the branch 'origin' is not in my local git repository. This way, Git stops connecting to Github.</p> <p>This is strange, since I have not removed the branch 'origin'.</p> <p>My git tree is</p> <pre><code> dev * master ticgit remotes/Math/Math remotes/Math/master remotes/origin/master remotes/Masi/master </code></pre> <p><strong>How can you push your local branch to Github</strong>, while you have a teamMate's branch in your local Git?</p> <p><hr /></p> <p>VonC's answer solves the main problem. I put a passphares to my ssh keys.</p> <p>I run </p> <pre><code>$git push github master </code></pre> <p>I get</p> <pre><code>Permission denied (publickey). fatal: The remote end hung up unexpectedly </code></pre> <p>It seems that I need to give the passphrase for Git somehow.</p> <p><strong>How can you make Git to ask passphares?</strong></p> http://stackoverflow.com/questions/922210/unable-to-git-push-master-to-github/922232#922232 1 Answer by Aaron for Unable to Git-push master to Github Aaron 2009-05-28T17:40:55Z 2009-05-28T17:49:48Z <p>I think that's another case of git error messages being misleading. Usually when I've seen that error it's due to ssh problems. Did you add your public ssh key to your github account?</p> <p>Edit: Also, the xinet.d forum post is referring to running the git-daemon as a service so that people could pull from your system. It's not necessary to run git-daemon to push to github.</p> http://stackoverflow.com/questions/922210/unable-to-git-push-master-to-github/922461#922461 4 Answer by VonC for Unable to Git-push master to Github VonC 2009-05-28T18:27:27Z 2009-05-29T04:08:32Z <p>What does</p> <pre><code>$ git config --get-regexp '^(remote|branch)\.' </code></pre> <p>returns (executed within your git repository) ?</p> <p>Origin is just a default naming convention for referring to a remote Git repository.</p> <p>If it does not refers to GitHub (but rather a path to your teammate repository, path which may no longer be valid or available), just add another origin, like in this <a href="http://blog.zhekov.net/2008/2/21/second-git-origin/" rel="nofollow">Bloggitation entry</a></p> <pre><code>$ git remote add origin2 git@github.com:myLogin/myProject.git $ git push origin2 master </code></pre> <p>(I would actually use the name 'github' rather than 'origin' or 'origin2')</p> <p><hr /></p> <blockquote> <p>Permission denied (publickey). fatal: The remote end hung up unexpectedly</p> </blockquote> <p>Check if your gitHub identity is correctly declared in your local Git repository, as mentioned in <a href="http://github.com/guides/tell-git-your-user-name-and-email-address" rel="nofollow">that guide</a>. (both user.name and github.name -- and github.token) </p> <p>Then, <a href="http://blog.stonean.com/2008/04/17/github-and-public-key/" rel="nofollow">stonean blog</a> suggests (as does <a href="http://blog.mangar.com.br/?p=67" rel="nofollow">Marcio Garcia</a>):</p> <pre><code>$ cd ~/.ssh $ ssh-add id_rsa </code></pre> <p><a href="http://aralbalkan.com/1778" rel="nofollow">Aral Balkan</a> adds: <strong>create a config file</strong></p> <blockquote> <p>The solution was to create a config file under ~/.ssh/ as outlined at the <a href="http://github.com/guides/providing-your-ssh-key#macosx" rel="nofollow">bottom of the OS X section of this page</a>.</p> <p>Here's the file I added, as per the instructions on the page, and my pushes started working again:</p> </blockquote> <pre><code>Host github.com User git Port 22 Hostname github.com IdentityFile ~/.ssh/id_rsa TCPKeepAlive yes IdentitiesOnly yes </code></pre> <p>You can also post the result of</p> <pre><code>ssh -v git@github.com </code></pre> <p>to have more information as to why GitHub ssh connection rejects you.</p> <p>Check also you did enter correctly your public key (it needs to end with '<code>==</code>').<br /> Do not paste your private key, but your public one. A public key would look something like:</p> <pre><code>ssh-rsa AAAAB3&lt;big string here&gt;== tek...@gmail.com </code></pre> <p>(Note: did you use a passphrase for your ssh keys ? It would be easier without a passphrase)</p> <p>Check also the url used when pushing (<code>git@github.com/...</code>, not <code>git://github.com/...</code>)</p> <p>Check that you do have a SSH Agent to use and cache your key.</p> <p>Try this:</p> <pre><code> $ ssh -i path/to/public/key git@github.com </code></pre> <p>If that works, then it means your key is not being sent to GitHub by your ssh client. </p> http://stackoverflow.com/questions/922210/unable-to-git-push-master-to-github/922566#922566 1 Answer by Sarah Mei for Unable to Git-push master to Github Sarah Mei 2009-05-28T18:53:09Z 2009-05-28T18:53:09Z <p>This is a problem with your remote. When you do <code>git push origin master</code>, <code>origin</code> is the remote and <code>master</code> is the branch you're pushing.</p> <p>When you do this:</p> <pre><code>git remote </code></pre> <p>I bet the list does not include <code>origin</code>. To re-add the origin remote: </p> <pre><code>git remote add origin git@github.com:your_github_username/your_github_app.git </code></pre> <p>Or, if it exists but is formatted incorrectly:</p> <pre><code>git remote rm origin git remote add origin git@github.com:your_github_username/your_github_app.git </code></pre> http://stackoverflow.com/questions/922210/unable-to-git-push-master-to-github/1528447#1528447 0 Answer by Julio Menendez for Unable to Git-push master to Github Julio Menendez 2009-10-06T22:32:55Z 2009-10-06T22:32:55Z <p>I got the same problem and I just added the content of ~/.ssh/id_rsa.pub to my account in GitHub. After that just try again <code>git push origin master</code>, it should work. </p>