gpt4 book ai didi

git - 能够使用一个命令推送到所有 git Remote 吗?

转载 作者:IT王子 更新时间:2023-10-29 01:17:08 25 4
gpt4 key购买 nike

而不是做:

git push origin --all && git push nodester --all && git push duostack --all

有没有办法只用一个命令就可以做到这一点?

谢谢:)

最佳答案

创建一个 all 远程,其名称包含多个 repo URL:

git remote add all origin-host:path/proj.git
git remote set-url --add all nodester-host:path/proj.git
git remote set-url --add all duostack-host:path/proj.git

然后只需 git push all --all


这是它在 .git/config 中的样子:

  [remote "all"]
url = origin-host:path/proj.git
url = nodester-host:path/proj.git
url = duostack-host:path/proj.git

关于git - 能够使用一个命令推送到所有 git Remote 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5785549/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com