create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
# first you need a new empty branch; let's call it `newroot` | |
git checkout --orphan newroot | |
git rm --cached -r . | |
# then you apply the same steps | |
git commit --allow-empty -m 'initial commit' | |
# or add some files for the first commit | |
git add . | |
git commit -m 'initial commit' |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"