Set up a Git that authenticates over SSH
git init
# Set up the initial Git structure
git remote add origin ssh://[email protected]/<username>/<repo>.git
# Have Git connect to Github over SSH
Next, add your SSH key in the Github settings
Transfer files from origin to master
git add <files>
git commit -m '<commit description>'
git push origin master