Talk:Git Primer
From Kokua Wiki
Stuck in a circle of ssh key he**.
Try:
Make sure you have a branch that you intend to test the git push process with or a working branch.
Do not use master, next, or weekly. They are established branches and pushing to them will likely result in error messages.
Use:
In ~/imprudence
git branch myworkproject
git checkout myworkproject
Then:
Follow the procedures to establish your public key on your computer and in your account at github.com.
Next:
If you changed directories to establish keys change back to ~/imprudence
git branch
Ensure the list of branches shows an * myworkproject in the branch list.
git remote add mygithub git@github.com:MyGithub/imprudence.git
git push mygithub myworkproject