美文网首页
git 将一个仓库的代码同时提交到多个 git 仓库

git 将一个仓库的代码同时提交到多个 git 仓库

作者: sweetBoy_9126 | 来源:发表于2024-05-26 10:26 被阅读0次

    比如我有一个A仓库,我需要在A仓库每次代码提交的时候,同时把A仓库当前分支的代码推送到B

    1. 进入A仓库git本地项目
    2. 添加一个新的远程仓库
    git remote add <目标仓库名称> <目标仓库链接>
    

    比如:

    git remote add B http//....git(B的git地址)
    
    1. 查看A仓库对应的远程仓库
    git remote -v
    
    1. push 到 B 仓库
    # git push 远程仓库名 A仓库的本地分支
    git push B feature/A
    
    1. 4推送到B仓库后也会推送到 feature/A 分支,如果我们想用B仓库现有的分支可以重命名
    git push B feature/A:dev -f
    

    相关文章

      网友评论

          本文标题:git 将一个仓库的代码同时提交到多个 git 仓库

          本文链接:https://www.haomeiwen.com/subject/mteqqjtx.html