zl程序教程

您现在的位置是:首页 >  工具

当前栏目

git如何将当前仓库的远程分支推到一个新的仓库中?

Git 如何 远程 一个 分支 当前 仓库
2023-09-11 14:16:47 时间

答: git push <目标仓库> +refs/remotes/source/:refs/heads/
示例如下:

git push https://github.com/jello.git +refs/remotes/source/*:refs/heads/*