文章适用于团队合作的时候多个人向一个repo贡献,整理了Git从fork分支开始的过程. 1. Fork 在github上你要贡献的repo(eg.http://github/remote/test.git)之后称上游仓库.点击fork,将上游仓库fork到你的github,之后称为远程库(eg.http://github/chercher/test.git) 2. Clone 选择本地文件夹,之后称为本地库 git clone http://github/chercher/test.git 3…