如何在上游执行 git 状态?
How do I do git status upstream?
在我的分叉存储库中,我设置了 remote origin
和 remote upstream
(原始存储库)。
git status
与原点比较。
我如何 与 upstream
进行比较?
谢谢
为了 git 将当前分支与另一个远程进行比较的状态,您需要为所述分支设置该远程
git config branch.<mybranch>.remote upstream
然后再试一次 git status
(可能 after a git remote update
)。
在“Select remote on Git status”查看更多信息。
在我的分叉存储库中,我设置了 remote origin
和 remote upstream
(原始存储库)。
git status
与原点比较。
我如何 与 upstream
进行比较?
谢谢
为了 git 将当前分支与另一个远程进行比较的状态,您需要为所述分支设置该远程
git config branch.<mybranch>.remote upstream
然后再试一次 git status
(可能 after a git remote update
)。
在“Select remote on Git status”查看更多信息。