多种方法解决There is no tracking information for the current branch的错误

这篇具有很好参考价值的文章主要介绍了多种方法解决There is no tracking information for the current branch的错误。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

1. 复现错误


今天发布某版本的项目,准备创建个v0point1分支,后期如果修改该版本,直接在该分支上修改即可。

首先,使用git branch v0point1命令,创建本地分支v0point1,如下图所示:

多种方法解决There is no tracking information for the current branch的错误,免费专栏,git,github,linux,后端,gitlab

其次,使用git checkout v0point1命令,切换到v0point1分支,如下图所示:

多种方法解决There is no tracking information for the current branch的错误,免费专栏,git,github,linux,后端,gitlab

当然,我们也可以使用git checkout -b v0point1命令,创建并切换到v0point1分支。

但在v0point1分支上,使用git pull命令拉取远程代码,却报出如下提示:

多种方法解决There is no tracking information for the current branch的错误,免费专栏,git,github,linux,后端,gitlab

There is no tracking information for the current branch.

2. 分析错误


There is no tracking information for the current branch.,这句话翻译成中文就是当前分支没有跟踪信息

当前分支是指远程分支。

换句话说,我在本地创建了v0point1分支,并没有关联远程仓库的v0point1分支,可能有如下两种情况:

  1. 远程仓库本身就没有v0point1分支。

  2. 远程存在v0point1分支,但我没有关联远程仓库。

因而,针对这两种情况,有如下两种解决方法。

3. 解决错误


既然本地分支没有关联远程分支,那就按如下两种方式解决该错误。

3.1 远程有分支


如下图所示,远程存在v0point1分支,如下图所示:

多种方法解决There is no tracking information for the current branch的错误,免费专栏,git,github,linux,后端,gitlab

使用git status命令,查看本地分支是否为v0point1,如下图所示:

多种方法解决There is no tracking information for the current branch的错误,免费专栏,git,github,linux,后端,gitlab

从图中可知,本地分支已经是v0point1,我们使用如下命令,合并远程分支:

  
  git branch --set-upstream-to=origin/远程分支名 本地分支名

多种方法解决There is no tracking information for the current branch的错误,免费专栏,git,github,linux,后端,gitlab

Branch 'v0point1' set up to track remote branch 'v0point1' from 'origin'.这句话可知,本地v0point1分支已关联远程分支了。

3.2 远程无分支


如下图所示,我把远程分支删了,只有本地有分支,推送到远程、并与远程分支进行关联。

多种方法解决There is no tracking information for the current branch的错误,免费专栏,git,github,linux,后端,gitlab

依旧使用git status命令,查看本地分支是否为v0point1,如下图所示:

多种方法解决There is no tracking information for the current branch的错误,免费专栏,git,github,linux,后端,gitlab

从图中可知,本地分支已经是v0point1,我们使用如下命令,将本地分支提交到远程仓库:


git push origin 本地分支名

多种方法解决There is no tracking information for the current branch的错误,免费专栏,git,github,linux,后端,gitlab

To create a merge request for v0point1这句话可以看到,已经创建了远程分支。

使用如下命令,


git branch --set-upstream-to=origin/远程分支名

多种方法解决There is no tracking information for the current branch的错误,免费专栏,git,github,linux,后端,gitlab

Branch 'v0point1' set up to track remote branch 'v0point1' from 'origin'.这句话可知,本地v0point1分支已关联远程分支了。

为了验证本地分支是否关联远程分支,检查gitlab上是否存在v0point1分支,如下图所示:

多种方法解决There is no tracking information for the current branch的错误,免费专栏,git,github,linux,后端,gitlab

gitlab上已存在v0point1分支。

4. 总结


如果以上方法,无法解决你的问题,欢迎在评论区留言。文章来源地址https://www.toymoban.com/news/detail-706470.html

到了这里,关于多种方法解决There is no tracking information for the current branch的错误的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包