Github not working

I ran git remote add origin git@github.com :meltzerj/dreamstill.git , which was fine, but when I ran git push origin master , I got an error:

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

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

What's happening?

Here is 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/* 
+7
source share
1 answer

Your repository has capital D in Dreamstill. Try:

 git remote rm origin git remote add origin git@github.com :meltzerj/Dreamstill.git 
+14
source

All Articles