摘要:
ssh-keygen -t rsa -C "foxialang@163.com" 一路回车直到生成SSH公钥 ssh -v git@github.com ssh-agent -s ssh-add ~/.ssh/id_rsa 找到公钥的路径,若此时遇到could not open a connecti 阅读全文
摘要:
git clone '仓库ssh地址' git status 查看当前仓库状态 git add * 将变更更新到暂存区 git commit -m '更新说明' 将暂存区的更新提交到仓库 git pull 拉取远程仓库更新并合并到本地 git push origin master 将本地分支的更新全 阅读全文