I am getting the following error. How do I resolve?: git add . git commit -m \'t\' git push origin development
To git@github.com:myrepo.git ! [
In my case. I had the error because I forgot to make a commit after create a repository on github into an existing project. So I solved:
git add . git commit -m"commentary"
Then I was able to type:
git push -u origin master