Create a new repository, or reuse an existing one.
Generate a new SSH key:
ssh-keygen -t rsa -C "[email protected]"
Copy the contents of the file ~/.ssh/id_rsa.pub
to your SSH keys in your GitHub account settings (https://github.com/settings/keys).
Test SSH key:
$ ssh -T [email protected]
Hi developius! You've successfully authenticated, but GitHub does not provide shell access.
Change directory into the local clone of your repository (if you're not already there) and run:
git remote set-url origin [email protected]:username/your-repository.git
Now try editing a file (try the README) and then do:
$ git commit -am "Update README.md"
$ git push
You should not be asked for a username or password. If it works, your SSH key is correctly configured.
Hi GitHub community! I am very beginner, so please answer with very detailed help. I will try to be as precise as possible.
Context: Mac OS X El Capitan Version 10.11.6 (15G22010)
GitHub Page with 2 Google Domains: jaeaess.com and jessdejesus.com
I am having 2 different GitHub accounts:
jaeaess -> [email protected]
jessdejesus -> [email protected]
At the beginning, I connected my account "jaeaess" with HTTPS. Adding, pushing committing were working fine. Then, I connected my account "jessdejesus" with HTTPS. But then I ran into errors when trying to push my code...
In order to be able to add, commit, and push from both of my accounts, I decided to follow https://medium.com/@therajanmaurya/git-push-pull-with-two-different-account-and-two-different-user-on-same-machine-a85f9ee7ec61
For both of my accounts.
Now, I am having the following:
"#jaeaess account
Host github.com-jaeaess
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_github_jaeaess
#jessdejesus account
Host github-jessdejesus
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_github_jessdejesus"
"#Default GitHub
Host github.com
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_github_jaeaess
#Second GitHub
Host github.com-jessdejesus
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_github_jessdejesus"
However, now that I did this, pushing my code doesn't work anymore for both of my accounts...
I get the following errors:
"For jaeaess:
Jessicas-MacBook-Pro:websites jess$ cd jaeaess/
Jessicas-MacBook-Pro:jaeaess jess$ git add .
Jessicas-MacBook-Pro:jaeaess jess$ git commit -m "test jaeaess"
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
nothing to commit, working tree clean
Jessicas-MacBook-Pro:jaeaess jess$ git push -u origin master
To https://github.com/jaeaess/jaeaess.github.io.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'https://github.com/jaeaess/jaeaess.github.io.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details."
For jessdejesus:
Jessicas-MacBook-Pro:jessdejesus jess$ git add .
Jessicas-MacBook-Pro:jessdejesus jess$ git commit -am "second commit"
On branch master
nothing to commit, working tree clean
Jessicas-MacBook-Pro:jessdejesus jess$ git push
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use
Jessicas-MacBook-Pro:jessdejesus jess$"
Could you please help me?
Many thanks in advance...