我使用以下命令推送到远程分支:

git push origin sandbox

如果我说

git push origin

这是在我的其他分支中也推送更改,还是只更新我的当前分支?我有三个分支:master、production和sandbox。

git推送文档对此不是很清楚,所以我想永远澄清这一点。

下面的git push命令会准确更新哪些分支和远程?

git push 
git push origin

上面的原点是一个遥控器。

我知道gitpush[remote][branch]将只将该分支推送到远程。


当前回答

我只是把它放在.gitconfig别名部分,喜欢它的工作方式:

pub = "!f() { git push -u ${1:-origin} `git symbolic-ref HEAD`; }; f"

将使用gitpub或另一个具有gitpub repo名称的repo将当前分支推送到源。美味的

其他回答

我只是将代码提交到一个分支并将其推送到github,如下所示:

git branch SimonLowMemoryExperiments
git checkout SimonLowMemoryExperiments
git add .
git commit -a -m "Lots of experimentation with identifying the memory problems"
git push origin SimonLowMemoryExperiments

与使用别名相比,我更喜欢创建git XXX脚本,这样我可以更容易地对它们进行源代码控制(我们的开发人员都在其路径上有一个特定的源代码控制目录)。

此脚本(称为gitsetpush)将remote.origin.push值的配置值设置为仅推送当前分支的值:

#!/bin/bash -eu

CURRENT_BRANCH=$(git branch | grep '^\*' | cut -d" " -f2)
NEW_PUSH_REF=HEAD:refs/for/$CURRENT_BRANCH

echo "setting remote.origin.push to $NEW_PUSH_REF"
git config remote.origin.push $NEW_PUSH_REF

注意,当我们使用Gerrit时,它将目标设置为refs/for/XXX,以将其推入审查分支。它还假定源是您的远程名称。

使用签出分支后调用

git checkout your-branch
git setpush

很明显,它也可以用来结账,但我喜欢脚本做一件事,并且做得很好

git 2.37.0中的新配置

运行以设置自动设置远程,而不是更改推送默认行为

git config --global --add --bool push.autoSetupRemote true

它与push配合得很好。默认为简单的上游

参考文献:答案推特文档犯罪

我只是把它放在.gitconfig别名部分,喜欢它的工作方式:

pub = "!f() { git push -u ${1:-origin} `git symbolic-ref HEAD`; }; f"

将使用gitpub或另一个具有gitpub repo名称的repo将当前分支推送到源。美味的

git push origin将推送源位置具有匹配远程分支的本地分支上的所有更改

工作方式类似于git push<remote>,其中<remote’是当前分支的远程(或源,如果当前分支没有配置远程)。

从git push手册页的Examples部分