之前我从git存储库下载了Linux内核。 现在我尝试使用git pull更新它,但它只更新到内核版本v2.6.36.4。 之后,git pull命令开始显示消息“已经是最新的。”
但是,我可以看到git repository上的最新版本是2.6.39-rc2。 如果不使用git clone一旦获得,我怎么能得到它?
答案 0 :(得分:2)
你确定你在正确的分支吗?您可以使用以下方法找出哪些远程分支:
git branch -r
然后您可以使用以下方式跟踪这些:
git checkout --track -b <local_branchname> origin/<remote_branchname>
可以找到更多信息here。