Git 两个仓库之间同步分支代码

仓库original-repository分支develop-test 同步至仓库target-repository分支develop-test(新建此分支)

# 1. 克隆目标仓库
git clone git@git.com/yourusername/target-repository.git
cd target-repository
 
# 2. 添加原始仓库作为远程仓库
git remote add source git@git.com/originalusername/original-repository.git
 
# 3. 拉取原始仓库的代码
git fetch source
 
# 4. 在本地仓库新建develop-test分支 并将源代码分支 合并代码到你的目标仓库
git checkout -b develop-test source/develop-test
 
# 提交合并的更改
git commit -am "Merge original repository into target repository"
 
# 推送合并后的代码到目标仓库
git push origin develop-test

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值