而不是做:
git push origin --all && git push nodester --all && git push duostack --all
有没有一种方法只用一个命令就能做到这一点?
谢谢:)
而不是做:
git push origin --all && git push nodester --all && git push duostack --all
有没有一种方法只用一个命令就能做到这一点?
谢谢:)
当前回答
我写了一个简短的bash函数,在一次调用中推送到多个远程。您可以指定单个遥控器作为参数,多个遥控器用空格分隔,或者不指定任何遥控器以将其推送到所有遥控器。
这可以添加到您的.bashrc或.bash_profile。
function GitPush {
REMOTES=$@
# If no remotes were passed in, push to all remotes.
if [[ -z "$REMOTES" ]]; then
REM=`git remote`
# Break the remotes into an array
REMOTES=$(echo $REM | tr " " "\n")
fi
# Iterate through the array, pushing to each remote
for R in $REMOTES; do
echo "Pushing to $R..."
git push $R
done
}
示例:假设您的repo有3个遥控器:rem1、rem2和rem3。
# Pushes to rem1
GitPush rem1
# Pushes to rem1 and rem2
GitPush rem1 rem2
# Pushes to rem1, rem2 and rem3
GitPush
其他回答
如果你想总是推到repo1, repo2和repo3,但总是只从repo1拉,将远程“origin”设置为
[remote "origin"]
url = https://exampleuser@example.com/path/to/repo1
pushurl = https://exampleuser@example.com/path/to/repo1
pushurl = https://exampleuser@example.com/path/to/repo2
pushurl = https://exampleuser@example.com/path/to/repo3
fetch = +refs/heads/*:refs/remotes/origin/*
在命令行配置:
$ git remote add origin https://exampleuser@example.com/path/to/repo1
$ git remote set-url --push --add origin https://exampleuser@example.com/path/to/repo1
$ git remote set-url --push --add origin https://exampleuser@example.com/path/to/repo2
$ git remote set-url --push --add origin https://exampleuser@example.com/path/to/repo3
如果你只想从repo1中拉取,但却推入到repo1和repo2中,用于特定的分支,specialBranch:
[remote "origin"]
url = ssh://git@aaa.xxx.com:7999/yyy/repo1.git
fetch = +refs/heads/*:refs/remotes/origin/*
...
[remote "specialRemote"]
url = ssh://git@aaa.xxx.com:7999/yyy/repo1.git
pushurl = ssh://git@aaa.xxx.com:7999/yyy/repo1.git
pushurl = ssh://git@aaa.xxx.com:7999/yyy/repo2.git
fetch = +refs/heads/*:refs/remotes/origin/*
...
[branch "specialBranch"]
remote = origin
pushRemote = specialRemote
...
见https://git-scm.com/docs/git-config # git-config-branchltnamegtremote。
我写了一个简短的bash函数,在一次调用中推送到多个远程。您可以指定单个遥控器作为参数,多个遥控器用空格分隔,或者不指定任何遥控器以将其推送到所有遥控器。
这可以添加到您的.bashrc或.bash_profile。
function GitPush {
REMOTES=$@
# If no remotes were passed in, push to all remotes.
if [[ -z "$REMOTES" ]]; then
REM=`git remote`
# Break the remotes into an array
REMOTES=$(echo $REM | tr " " "\n")
fi
# Iterate through the array, pushing to each remote
for R in $REMOTES; do
echo "Pushing to $R..."
git push $R
done
}
示例:假设您的repo有3个遥控器:rem1、rem2和rem3。
# Pushes to rem1
GitPush rem1
# Pushes to rem1 and rem2
GitPush rem1 rem2
# Pushes to rem1, rem2 and rem3
GitPush
你可以利用git挂钩——尤其是pre-push:在.git/hooks/pre-push中添加非原始的推送。
作为编辑.git/config文件的CLI替代方案,您可以使用以下命令:
# 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在这里也适用。
你已经完成了与答案1相同的任务。您只是使用命令行而不是对配置文件进行原始编辑。
将所有分支推到所有遥控器:
git remote | xargs -L1 git push --all
或者如果你想把一个特定的分支推到所有的遥控器:
用你想推的分支替换master。
git remote | xargs -L1 -I R git push R master
(奖励)为命令创建一个git别名:
git config --global alias.pushall '!git remote | xargs -L1 git push --all'
运行git pushall现在会将所有分支推到所有远程。