使分支在 git fetch 后可访问



有没有办法在没有git checkout <newbranch>的情况下使分支在git fetch后直接访问?

如果我使用 git fetch 命令,我希望在使用后直接在显示的列表中查看新分支,例如 git branch .

如果"可访问"是指在git branch给出的列表中可见,那么您可以使用 -a 标志:

git branch -a

它将显示所有分支,包括远程跟踪分支。

因此,如果有人将second_branch添加到远程存储库,在运行git fetch之前,您可能会看到:

%> git branch -a
* master
remotes/origin/master

然后在git fetch之后,您可能会看到:

%> git branch -a
* master
remotes/origin/master
remotes/origin/second_branch

如果您只想查看远程跟踪分支,还有-r选项。

相关内容

  • 没有找到相关文章

最新更新