I\'m trying to upload my repo on github and go through all the steps upto:
git push -u origin master
at that point it gives me the following er
Multiple users generate their own ssh key, Generating a new SSH key and adding it to the ssh-agent
Adding a new SSH key to your GitHub account
Alice Repository, git bash:
git config user.name "Alice"git config user.email "alice@email.com"eval $(ssh-agent -s), ssh-add ~/.ssh/alice.privatessh -T git@github.com, Testing your SSH connectionBob Repository, git bash:
git config user.name "Bob"git config user.email "bob@email.com"eval $(ssh-agent -s), ssh-add ~/.ssh/bob.privatessh -T git@github.com, Testing your SSH connection