First, make sure that the ssh keys are successfully created by running the command:
$ ssh -T git@github.com
It should print "Hi Andrey-Bushman! You've successfully authenticated, but GitHub does notprovide shell access."
If not, check out SSH Git Access .
After completing, do the following:
clone repo using ssh protocol like:
git@github.com :<github-username>/<repo>.git
In your case:
git@github.com :Andrey-Bushman/<repo>.git
Commit your changes to the repo.
Then git push origin <branch-name>
In your case:
git push origin master
Arpit source share