The steps below are meant for more experienced GitHub users. They are necessary when you want to use SSH instead HTTPS for GitHub authentication.
-
Register your public SSH key (normally
~/.ssh/id_rsa.pub) at GitHub. -
Run the following command:
git config --global url."git@github.com:".insteadOf https://github.com/. This will make Git rewrite GitHub URLs to use SSH instead of HTTPS. This "hack" is necessary since it is not possible to specify thego gettool to use SSH authentication. -
Go through steps 1 to 3 in the section Go Assignments in Lab 1, but in Step 3 replace the command with
git remote add labs git@github.com:uis-dat520/username-labs.git(whereusernameshould be replaced with your own GitHub username).