摘要:
Git配置单个仓库的用户名邮箱$ git config user.name “gitlab’s Name”$ git config user.email “gitlab@xx.com”$ git config ... 阅读全文
摘要:
ssh生成单个公钥命令:ssh-keygen -t rsa -b 4096 -C "your_email@example.com"查看公钥:cat ~/.ssh/id_rsa.pub同时生成两个公钥:user1... 阅读全文
摘要:
仓库管理:添加或指定远程仓库地址git remote set-url origin "https://..."git config remote.origin.url "https://..."删除git rem... 阅读全文