摘要: Git配置单个仓库的用户名邮箱$ git config user.name “gitlab’s Name”$ git config user.email “gitlab@xx.com”$ git config ... 阅读全文
posted @ 2020-03-24 23:46 两粒 阅读(589) 评论(0) 推荐(0) 编辑
摘要: ssh生成单个公钥命令:ssh-keygen -t rsa -b 4096 -C "your_email@example.com"查看公钥:cat ~/.ssh/id_rsa.pub同时生成两个公钥:user1... 阅读全文
posted @ 2020-03-24 23:28 两粒 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 仓库管理:添加或指定远程仓库地址git remote set-url origin "https://..."git config remote.origin.url "https://..."删除git rem... 阅读全文
posted @ 2020-03-24 23:10 两粒 阅读(4913) 评论(0) 推荐(0) 编辑