1.安装Git
//安装Git
sudo apt install git
//查看版本
git --version
2.配置Git
//配置Git的用户名和邮箱地址
git config --global user.name "huoxiaoqiang"
git config --global user.email "237306165@qq.com"
//配置git init命令的默认分支名称
git config --global init.defaultBranch "main"
//查看所有配置
git config --global --list
//查看~/.ssh目录是否已经有SSH老密钥对存在。
ls -al ~/.ssh
//如果没有SSH老密钥对,或者不想使用SSH老密钥对,则可以生成SSH新密钥对。
ssh-keygen -t ed25519 -C "237306165@qq.com"
//按三次Enter使用默认配置即可。
Enter file in which to save the key (/home/ho/.ssh/id_ed25519):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
//读取SSH新密钥对中的公钥,然后复制粘贴到Gitee。
cat ~/.ssh/id_ed25519.pub
//测试SSH新密钥对是否配置成功
ssh -T git@gitee.com
//输入yes使用默认配置即可。
Are you sure you want to continue connecting (yes/no/[fingerprint])?
//成功的输出结果
Hi huoxiaoqiang(@huoxiaoqiang)! You've successfully authenticated, but GITEE.COM does not provide shell access.
原创文章,作者:huoxiaoqiang,如若转载,请注明出处:https://www.huoxiaoqiang.com/linux/git/31999.html