Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Github not working

Tags:

git

github

I ran git remote add origin [email protected]:meltzerj/dreamstill.git which was fine, but when I run git push origin master I get the error:

ERROR: meltzerj/dreamstill.git doesn't exist. Did you enter it correctly?
fatal: The remote end hung up unexpectedly

However, the repository does exist: https://github.com/meltzerj/Dreamstill

whats going on?

Here's the contents of .git/config:

[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
[remote "origin"]
url = [email protected]:meltzerj/dreamstill.git
fetch = +refs/heads/*:refs/remotes/origin/*
like image 810
Justin Meltzer Avatar asked Mar 14 '11 06:03

Justin Meltzer


People also ask

Why is GitHub not working?

If you're having trouble connecting to GitHub, you can troubleshoot your connection, then use the GitHub Debug tool to diagnose problems. Most often, connection problems occur because a firewall, proxy server, corporate network, or other network is configured in a way that blocks GitHub.

Is GitHub down now?

Current GitHub status is up.

Is it online GitHub?

GitHub is an online service for software development projects that use the Git revision control system.

Where are GitHub issues?

On GitHub.com, navigate to the main page of the repository. Under your repository name, click Issues. Click New issue. If your repository uses issue templates, click Get started next to the type of issue you'd like to open.


1 Answers

Your repository has a capital D in "Dreamstill". Try:

git remote rm origin
git remote add origin [email protected]:meltzerj/Dreamstill.git
like image 55
Mark Longair Avatar answered Oct 04 '22 17:10

Mark Longair