Justin Meltzer
Justin Meltzer

Reputation: 13548

Github not working

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/*

Upvotes: 7

Views: 3584

Answers (1)

Mark Longair
Mark Longair

Reputation: 467033

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

git remote rm origin
git remote add origin [email protected]:meltzerj/Dreamstill.git

Upvotes: 15

Related Questions