We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
查看当前用户 git config user.name git config user.email 设置当前用户 git config --global user.name "username" git config --global user.email "username@email.com" 设置私钥和公钥 ssh-keygen -t rsa -C “username@email.com" 将生成的*_rsa.pub 的内容粘贴到对应地方 git checkout . 还原当前修改操作
The text was updated successfully, but these errors were encountered:
No branches or pull requests
查看当前用户
git config user.name
git config user.email
设置当前用户
git config --global user.name "username"
git config --global user.email "username@email.com"
设置私钥和公钥
ssh-keygen -t rsa -C “username@email.com"
将生成的*_rsa.pub 的内容粘贴到对应地方
git checkout .
还原当前修改操作
The text was updated successfully, but these errors were encountered: