2021年4月16日
摘要: 在本地绑定/解绑远程仓库 git remote add origin git@github.com:michaelliao/learngit.git 远程库默认名字是origin git push -u origin master 删除本地绑定的远程库地址git remote rm 阅读全文
posted @ 2021-04-16 17:21 carysun 阅读(92) 评论(0) 推荐(0) 编辑
摘要: SSH加密 第1步 本地终端生成密钥(私钥、公钥) 第2步 远程Git服务上添加公钥 SSH Key访问测试 阅读全文
posted @ 2021-04-16 15:21 carysun 阅读(751) 评论(0) 推荐(0) 编辑
摘要: 工作区(Working Directory)、版本库(Repository).git、暂存区(stage/index); 当前文件与最新提交(HEAD)版本之间的差异 git diff HEAD -- 阅读全文
posted @ 2021-04-16 10:07 carysun 阅读(85) 评论(0) 推荐(0) 编辑