我可以将本地仓库推送到两个远程回购站吗?

时间:2015-09-05 15:44:14

标签: git bash heroku

我想使用这些bash函数将我的本地仓库推送到两个远程仓库,但我不确定这是否有效。

p_foo_0() {
  git add -A .
  git commit -m "test"
  git push origin master
  echo "success"
}

p_foo_1() {
  git add -A .
  git commit -m "test"
  git push heroku master
  echo "success"
}

1 个答案:

答案 0 :(得分:2)

使用以下方式配置遥控器:

git remote set-url all --push --add <first-repo>
git remote set-url all --push --add <second-repo>

现在你可以使用:

git push all master

推送到两个回购