生成公钥ssh-keygen -t ed25519 -C "sakahks@163.com"
输入三次回车,到对应的目录下找到公钥,id_ed25519.pub,类似于这样的文件,然后复制下来,粘贴到公钥里即完成。
Author identity unknown的解决方法
git config --global user.name “你的名字”
git config --global user.email “你的邮箱地址”
克隆仓库命令git clone + ssh复制下来
git pull --rebase origin master
Git上传文件命令
git init
git add . //添加当前文件夹下所有文件
git add **.cpp //添加当前文件夹下的**.cpp这个文件
git commit -m “你的提交信息”
git push
git学习
最新推荐文章于 2024-11-06 16:04:04 发布