GIT:A boon for open-source developers who need to collaborate on code.
Local Git Config
Create the Encrypted connection
- Generate the SSH key
1
ssh-keygen -t rsa -C "[Email on Github]"
- Put the public key(
.pub
) to the GitHub settings - Verify the connection’s available
Initial the Git configuration
1 | git config --global user.name "name" //你的GitHub登陆名 |