比如我有一个A仓库,我需要在A仓库每次代码提交的时候,同时把A仓库当前分支的代码推送到B
- 进入A仓库git本地项目
- 添加一个新的远程仓库
git remote add <目标仓库名称> <目标仓库链接>
比如:
git remote add B http//....git(B的git地址)
- 查看A仓库对应的远程仓库
git remote -v
- push 到 B 仓库
# git push 远程仓库名 A仓库的本地分支
git push B feature/A
- 4推送到B仓库后也会推送到 feature/A 分支,如果我们想用B仓库现有的分支可以重命名
git push B feature/A:dev -f
网友评论