你自己有仓库 , 相同的文件通过文件的方式发给你,
收到文件的根目录 init 要和仓库的根目录路径相同,
git init
git add .
git commit -m 'messages'
#创建新分支 自动切换到创建的分支
git switch -c <newBranchName>
#删除默认master分支。(貌似省略也可以)
git branch -d master
#查看当前分支 是否是新分支
git branch
#添加远程仓库地址,要跟你合并的地址相同
git remote add origin https://gitee.com/**/**.git
#把此项目推送到远程
git push -u origin <newBranchName>
#在原始项目中 更新一下分支
#然后查看一下分支确认在master分支
git branch
#然后
git merge <newBranchName>
#refusing to merge unrelated histories
#肯定会报错,因为新上传的跟当前的不相关 后边加入 --allow-unrelated-histories
git merge <newBranchName> --allow-unrelated-histories
#用工具解决冲突然后 提交上传到 master 合并完成
评论区