ERROR: planetguru/Lampshade.git doesn't exist. Did you enter it correctly?
It took me a short while to remember that I had renamed the project on github shortly before (removing the capitalisation of 'lapshade'). Your local git repo won't be aware of this name-change, so when you attempt a push up to the master repo, github will report that it doesn't exist.
To fix the issue, open up the .git file under [..]/projectname/.git/config and change the line which reads:
[remote "origin"]
url = git@github.com:username/Projectname.git
Just make sure that Projectname matches the project name which you have up on github - and you're done.






