gitlab 生成SSH key,设置用户名邮箱和密码

生成SSH key

完成后在 ~/.ssh/ 会生成2个文件 id_rsa 和 id_rsa.pub 前者是私钥,后者是公钥(需要粘贴到gitlab的ssh key 页面)

ssh-keygen -t rsa -C "YOUR EMAIL"
设置用户名和邮箱
git config --global user.name “xx”
git config --global user.email “[email protected][email protected]

查看用户名和邮箱
git config user.name
git config user.email
设置密码(如果每次 pull 和 push 都需要输入密码)

执行以下命令,下次 pull 或者 push 时输入密码之后,就不用再输入啦

git config credential.helper store

你可能感兴趣的:(工具,gitlab,密码,SSH)