create different ssh key according the article Mac Set-Up Git
ssh-keygen -t rsa -C "[email protected]"
Please refer to github ssh issues for common problems.
| <select name="timezone" > | |
| <option disabled selected style='display:none;'>Time Zone...</option> | |
| <optgroup label="US (Common)"> | |
| <option value="America/Puerto_Rico">Puerto Rico (Atlantic)</option> | |
| <option value="America/New_York">New York (Eastern)</option> | |
| <option value="America/Chicago">Chicago (Central)</option> | |
| <option value="America/Denver">Denver (Mountain)</option> | |
| <option value="America/Phoenix">Phoenix (MST)</option> | |
| <option value="America/Los_Angeles">Los Angeles (Pacific)</option> |
| git branch -m old_branch new_branch # Rename branch locally | |
| git push --delete origin old_branch # Delete the old branch | |
| git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
create different ssh key according the article Mac Set-Up Git
ssh-keygen -t rsa -C "[email protected]"
Please refer to github ssh issues for common problems.