仓库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