那么我们这就正式开始吧!
假设我是一个小男孩(小明),现在我要跟我的上司小女孩(小红),合作开发。
第一步:fork小红在GitHub上的Repository到小明的GitHub
第二步:clone小明的GitHub Repository到小明的本地电脑(注意是小明的Repository 方式为SSH)
第三步:与小红在GitHub上的的Repository建立新的链接
git remote add upstream 小红的Repository地址
第四步:查看当前链接情况
git remote -v
第五步:新建工作分支
git checkout -b 分支名字
第六步:修改代码文件
网友评论