如何更换远程仓库 URL?
使用 git remote set-url
命令。一般来讲,第一个参数,现有远程仓库一般为 origin
或者 upstream
。第二个参数为 URL,一般为 HTTPS 或者 SSH。
1 | # list existing remote branches |
如何只更新部分文件?
1 | # download all the recent changes, but not put it in your current checked out code (working area) |
如何在 push 改动时使用不同的 SSH 密钥?
1 | GIT_SSH_COMMAND='ssh -i ~/.ssh/your_private_key' git push origin main |