有人将一个名为test
with的分支推git push origin test
送到共享存储库。我可以看到带有 的分支git branch -r
。
现在我正在尝试检查远程test
分支。
我试过了:
git checkout test
什么都不做git checkout origin/test
给* (no branch)
. 这令人困惑。我怎么能在“没有分支”?
如何签出远程 Git 分支?
有人将一个名为test
with的分支推git push origin test
送到共享存储库。我可以看到带有 的分支git branch -r
。
现在我正在尝试检查远程test
分支。
我试过了:
git checkout test
什么都不做
git checkout origin/test
给* (no branch)
. 这令人困惑。我怎么能在“没有分支”?
如何签出远程 Git 分支?
答案已根据配置的远程存储库是一个还是多个而有所不同。这样做的原因是,对于单个远程情况,一些命令可以简化,因为歧义较少。
针对 Git 2.23 更新:对于旧版本,请参阅最后的部分。
在这两种情况下,首先从远程存储库获取以确保您已下载所有最新更改。
$ git fetch
这将为您获取所有远程分支。您可以通过以下方式查看可用于结帐的分支:
$ git branch -v -a
...
remotes/origin/test
开头的分支remotes/*
可以被认为是远程分支的只读副本。要在分支上工作,您需要从它创建一个本地分支。这是使用 Git 命令switch
(自 Git 2.23 起)通过为其指定远程分支的名称(减去远程名称)来完成的:
$ git switch test
在这种情况下,Git 猜测(可以用 禁用--no-guess
)您正在尝试签出并跟踪具有相同名称的远程分支。
在存在多个远程存储库的情况下,需要显式命名远程存储库。
和以前一样,首先获取最新的远程更改:
$ git fetch origin
这将为您获取所有远程分支。您可以通过以下方式查看可用于结帐的分支:
$ git branch -v -a
有了远程分支,您现在需要检查您感兴趣的分支-c
以创建一个新的本地分支:
$ git switch -c test origin/test
有关使用的更多信息git switch
:
$ man git-switch
我还创建了下面的图像供您分享差异,看看如何获取工作,以及拉取的不同之处:
git switch
在 Git 2.23 中添加,在此之前git checkout
用于切换分支。
要仅使用单个远程存储库签出:
git checkout test
如果配置了多个远程存储库,它会变得更长一些
git checkout -b test <name of remote>/test
旁注:使用现代 Git (>= 1.6.6 ),您可以使用
git checkout test
(请注意,它是“测试”而不是“起源/测试”)执行神奇的DWIM -mery 并为您创建本地分支“测试”,上游将是远程跟踪分支“起源/测试”。
* (no branch)
in输出意味着您在未命名的git branch
分支上,处于所谓的“分离 HEAD”状态(HEAD 直接指向提交,而不是对某个本地分支的符号引用)。如果你在这个未命名的分支上做了一些提交,你总是可以从当前提交创建本地分支:
git checkout -b test HEAD
评论中建议的更现代的方法:
@Dennis:
git checkout <non-branch>
,例如git checkout origin/test
导致分离的 HEAD / 未命名分支,而git checkout test
或git checkout -b test origin/test
导致本地分支test
(将远程跟踪分支origin/test
作为上游) – Jakub Narębski 2014-01-09 08:17:37
强调git checkout origin/test
在这种情况下,您可能希望创建一个test
跟踪远程分支的本地test
分支:
$ git branch test origin/test
在早期版本中git
,您需要一个显式--track
选项,但现在当您从远程分支分支时,这是默认选项。
要创建本地分支并切换到它,请使用:
$ git checkout -b test origin/test
虽然第一个和选定的答案在技术上是正确的,但您可能尚未从远程存储库中检索所有对象和引用。如果是这种情况,您将收到以下错误:
$ git checkout -b remote_branch origin/remote_branch
致命:git checkout:更新路径与切换分支不兼容。
您是否打算签出无法解析为提交的“origin/remote_branch”?
如果您收到此消息,您必须先执行git fetch origin
where origin
is the name of the remote repository,然后再运行git checkout remote_branch
。这是一个完整的响应示例:
$ git fetch origin
remote: Counting objects: 140, done.
remote: Compressing objects: 100% (30/30), done.
remote: Total 69 (delta 36), reused 66 (delta 33)
Unpacking objects: 100% (69/69), done.
From https://github.com/githubuser/repo-name
e6ef1e0..5029161 develop -> origin/develop
* [new branch] demo -> origin/demo
d80f8d7..359eab0 master -> origin/master
$ git checkout demo
Branch demo set up to track remote branch demo from origin.
Switched to a new branch 'demo'
如您所见,运行git fetch origin
检索了我们尚未设置为在本地计算机上跟踪的任何远程分支。从那里开始,由于我们现在有一个远程分支的引用,我们可以简单地运行git checkout remote_branch
,我们将获得远程跟踪的好处。
我尝试了上述解决方案,但没有奏效。试试这个,它有效:
git fetch origin 'remote_branch':'local_branch_name'
这将获取远程分支并使用名称创建一个新的本地分支(如果不存在)local_branch_name
并跟踪其中的远程分支。
利用:
git checkout -b <BRANCH-NAME> <REMOTE-NAME>/<BRANCH-NAME>
在我的良性案例中,其他答案不适用于现代 Git。如果远程分支是新的,您可能需要先提取,但我没有检查过这种情况。
要克隆 Git 存储库,请执行以下操作:
git clone <either ssh url /http url>
上面的命令检查出所有的分支,但只有master
分支会被初始化。如果要检查其他分支,请执行以下操作:
git checkout -t origin/future_branch (for example)
此命令检出远程分支,您的本地分支名称将与远程分支相同。
如果您想在结帐时覆盖您的本地分支名称:
git checkout -t -b enhancement origin/future_branch
现在您的本地分支名称是enhancement
,但您的远程分支名称是future_branch
。
你可以试试
git fetch remote
git checkout --track -b local_branch_name origin/branch_name
或者
git fetch
git checkout -b local_branch_name origin/branch_name
首先,您需要执行以下操作:
git fetch
# 如果你不知道分支名称
git fetch origin branch_name
其次,您可以通过以下方式将远程分支签出到本地:
git checkout -b branch_name origin/branch_name
-b
将从您选择的远程分支以指定名称创建新分支。
我陷入了看到error: pathspec 'desired-branch' did not match any file(s) known to git.
上述所有建议的境地。我在 Git 版本 1.8.3.1 上。
所以这对我有用:
git fetch origin desired-branch
git checkout -b desired-branch FETCH_HEAD
背后的解释是我注意到在获取远程分支时,它被提取到了FETCH_HEAD:
git fetch origin desired-branch
From github.com:MYTEAM/my-repo
* branch desired-branch -> FETCH_HEAD
我使用以下命令:
git checkout --track origin/other_remote_branch
命令
git fetch --all
git checkout -b <ur_new_local_branch_name> origin/<Remote_Branch_Name>
等于
git fetch --all
接着
git checkout -b fixes_for_dev origin/development
两者都将创建一个latest fixes_for_dev
来自development
只需git checkout
使用远程分支的名称运行。Git 将自动创建一个本地分支来跟踪远程分支:
git fetch
git checkout test
但是,如果在多个远程中找到该分支名称,这将不起作用,因为 Git 不知道该使用哪个。在这种情况下,您可以使用:
git checkout --track origin/test
或者
git checkout -b test origin/test
在2.19中,Git 学习了checkout.defaultRemote
配置,该配置指定了解决此类歧义时默认使用的远程。
如果分支位于远程以外的其他地方,origin
我喜欢执行以下操作:
$ git fetch
$ git checkout -b second/next upstream/next
这会将远程next
分支检出upstream
到名为second/next
. 这意味着如果您已经有一个名为 next 的本地分支,它将不会发生冲突。
$ git branch -a
* second/next
remotes/origin/next
remotes/upstream/next
这些答案都不适合我。这有效:
git checkout -b feature/branch remotes/origin/feature/branch
该git remote show <origin name>
命令将列出所有分支(包括未跟踪的分支)。然后你可以找到你需要获取的远程分支名称。
例子:
$ git remote show origin
使用以下步骤获取远程分支:
git fetch <origin name> <remote branch name>:<local branch name>
git checkout <local branch name > (local branch name should the name that you given fetching)
例子:
$ git fetch origin test:test
$ git checkout test
git fetch && git checkout your-branch-name
git branch -r
表示对象名称无效,因为该分支名称不在 Git 的本地分支列表中。从 origin 更新您的本地分支列表:
git remote update
然后尝试再次检查您的远程分支。
这对我有用。
我相信git fetch
拉入所有远程分支,这不是原始发布者想要的。
从远程获取并签出分支。
git fetch <remote_name> && git checkout <branch_name>
例如:
git fetch origin && git checkout feature/XYZ-1234-Add-alerts
其他人给出了解决方案,但也许我可以告诉你原因。
git checkout test 什么都不做
Does nothing
不等于doesn't work
,所以我猜当您在终端中键入“git checkout test”并按回车键时,不会出现任何消息,也不会发生错误。我对吗?
如果答案是“是”,我可以告诉你原因。
原因是您的工作树中有一个名为“test”的文件(或文件夹)。
git checkout xxx
解析时,
xxx
是一个分支名称,但没有任何名为 test 的分支。xxx
是一个路径,幸运的是(或不幸地),有一个名为 test.txt 的文件。所以git checkout xxx
意味着丢弃xxx
文件中的任何修改。xxx
,Git 将尝试xxx
根据一些规则创建文件。规则之一是创建一个名为xxx
if remotes/origin/xxx
exists 的分支。获取新创建的分支
git fetch
切换到另一个分支
git checkout BranchName
由于某种原因,我不能这样做:
$ git checkout -b branch-name origin/branch-name
它抛出错误:
fatal: 'origin/branch-name' is not a commit and a branch 'branch-name' cannot be created from it
我必须做:
$ git checkout -b branch-name commit-sha
您可以使用以下 Bash 脚本开始跟踪所有远程分支:
#!/bin/bash
git fetch --all
for branch in `git branch -r --format="%(refname:short)" | sed 's/origin\///'`
do git branch -f --track "$branch" "origin/$branch"
done
这里也是单行版本:
git fetch --all; for branch in `git branch -r --format="%(refname:short)" | sed 's/origin\///'`; do git branch --track "$branch" "origin/$branch" ; done ;
我经常做:
git fetch origin && git checkout --track origin/branch_name
让所有远程分支使用这个:
git fetch --all
然后结帐到分支:
git checkout test
只需运行这两个命令,您就可以开始了。
git checkout <branch-name>
git pull <remote> <branch-name>
对我们来说,配置似乎出remote.origin.fetch
了问题。因此,除了 之外,我们看不到任何其他远程分支master
,因此git fetch [--all]
没有帮助。既没有git checkout mybranch
也git checkout -b mybranch --track origin/mybranch
没有工作,虽然它肯定是在远程。
之前的配置只允许master
获取:
$ git config --list | grep fetch
remote.origin.fetch=+refs/heads/master:refs/remotes/origin/master
通过使用*
并从源获取新信息来修复它:
$ git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
$ git fetch
...
* [new branch] ...
...
现在我们可以git checkout
在本地进行远程分支。
不知道这个配置是如何在我们的本地仓库中结束的。
git fetch --all
会将所有远程分支提取到您的本地
git checkout test
会将您切换到测试分支
TL;DR 使用git switch
而不是git checkout
,此链接中的更多详细信息
我认为答案已经过时了。Git 拆分了checkout
toswitch
和restore
now 的一些功能。
以下是我的总结:
如果你想为远程分支更新一些东西,你应该创建本地分支来“跟踪”远程分支。您可以在本地更新您想要的任何内容,最后推送到远程。如果您在克隆存储库后直接签出到远程分支,您可能会看到“分离的 HEAD”状态和来自 Git 的以下消息:
Note: switching to 'origin/asd'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:
git switch -c <new-branch-name>
Or undo this operation with:
git switch -
Turn off this advice by setting config variable advice.detachedHead to false
HEAD is now at d3e1083 Update a
那么如何创建本地分支来跟踪远程分支呢?
要创建本地分支以跟踪远程分支,您可以使用git checkout <remote branch name>
或git switch <remote branch name>
。如果您有一个文件或文件夹与您的远程分支名称相同,git checkout
会输出一些错误消息,但git switch
可以正常工作!
例子:
remotes/origin/asd
,我们还有文件名asd
$ git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/asd
remotes/origin/ereres
remotes/origin/master
remotes/origin/zxc
$ ls
a asd
git checkout
命令创建本地分支来跟踪远程分支,Git 应该会输出一些错误消息$ git checkout asd
fatal: 'asd' could be both a local file and a tracking branch.
Please use -- (and optionally --no-guess) to disambiguate
git switch
!$ git switch ereres
Branch 'ereres' set up to track remote branch 'ereres' from 'origin'.
Switched to a new branch 'ereres'
$ git branch -vv
* ereres 3895036 [origin/ereres] Update a
master f9e24a9 [origin/master] Merge branch 'master' of
我用过那个:
git fetch origin
git reset --hard origin/{branchname}
在我看来,没有人提出最简单的方法(或者我可能太愚蠢了,无法认为这是“一种方法”)。但无论如何,你试过这个吗?
$ git pull origin remoteBranchName
$ git switch remoteBranchName
这在同样的情况下对我有用(在我最后一次拉取请求之后在远程创建的分支)。
用来fetch
拉出你所有的遥控器
git fetch --all
列出远程分支:
git branch -r
列出你所有的分支
git branch -l
>>outpots like-
* develop
test
master
结帐/更改分支
git checkout master
请按照命令创建一个空文件夹。输入并使用以下命令:
saifurs-Mini:YO-iOS saifurrahman$ git clone your_project_url
Cloning into 'iPhoneV1'...
remote: Counting objects: 34230, done.
remote: Compressing objects: 100% (24028/24028), done.
remote: Total 34230 (delta 22212), reused 15340 (delta 9324)
Receiving objects: 100% (34230/34230), 202.53 MiB | 294.00 KiB/s, done.
Resolving deltas: 100% (22212/22212), done.
Checking connectivity... done.
saifurs-Mini:YO-iOS saifurrahman$ cd iPhoneV1/
saifurs-Mini:iPhoneV1 saifurrahman$ git checkout 1_4_0_content_discovery
Branch 1_4_0_content_discovery set up to track remote branch 1_4_0_content_discovery from origin.
Switched to a new branch '1_4_0_content_discovery'
有很多选择,例如:
备选方案 1:
git fetch && git checkout test
这是最简单的方法。
备选方案 2:
git fetch
git checkout test
它是相同的,但在两个陡峭的地方。
您可以在本地添加一个新分支test
,然后使用:
git branch --set-upstream-to=origin/test test