I ran git remote add origin git@github.com: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 correct开发者_StackOverflow社区ly?
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 = git@github.com:meltzerj/dreamstill.git
fetch = +refs/heads/*:refs/remotes/origin/*
Your repository has a capital D in "Dreamstill". Try:
git remote rm origin
git remote add origin git@github.com:meltzerj/Dreamstill.git
精彩评论