从一个遥控器拉出git并推送到另一个遥控器的方法?

时间:2016-09-02 02:55:13

标签: git-push git-pull git-remote

我有两个遥控器原点和前叉。我想要实现的是从原点获取git pull并使git push推送到分叉。

  1. 一种方法是为拉入和推入设置不同的URL .git/configurl是为了拉。 pushurl是推送。 https://stackoverflow.com/a/7420741/431698提到了这种方法。
  2. 另一种方法是使用git remote set-url设置urlgit remote set-url --push设置pushurl。这种方法基本上与方法1相同。https://stackoverflow.com/a/15903520/431698提到了这种方法。
  3. 使用remote.pushdefaulthttps://stackoverflow.com/a/18562564/431698提到了这种方法。
  4. 有没有办法实现我的目标?

0 个答案:

没有答案