Git指南(4) - github协作

本文详细介绍了如何在GitHub中添加合作者、共享项目,并通过git命令完成代码的本地修改、提交和远程推送过程。重点阐述了在进行本地代码修改后,如何正确地与远程仓库进行同步,避免常见错误并确保代码安全合并。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

github添加合作者

collaborator中添加id

github collaborator 共享项目

git clone ...

git checkout -b collaborator

修改代码

git add ..

git commit -m 'xxx'

git push

        这个时候会报错

Everything up-to-date

        不能这么使用, 必须merge到master上再git push提交. 或者创建新的branch提交

1) merge master提交

git checkout master

git merge collaborator

git push origin master

2) 创建新branch提交

git push origin collaborator

    Username for 'https://github.com': zouzhicheng1983
    Password for 'https://zouzhicheng1983@github.com': 
    To https://github.com/youzhibicheng/git_test2.git
     * [new branch]      collaborator -> collaborator

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值