Tag: github

Using Different GitHub Account for a Repo on the Same Machine

If you have Git installed and already have your global config and ssh established for your GitHub account but need to create a separate account for your repo follow these steps. Create a local git config within the new repo git config --local user.name "[YOUR_NAME]" git config --local user.email "[YOUR_EMAIL]" Create new keys to be … Continue reading Using Different GitHub Account for a Repo on the Same Machine