Can‘t update dev_zgd has no tracked branch

这篇具有很好参考价值的文章主要介绍了Can‘t update dev_zgd has no tracked branch。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

今天使用 Pycharm 时,本地在 dev 分支上,点击 VCS 更新按钮出现如下错误:
dev has no tracked branch,Git,git
怎么解决呢?
输入以下命令:

git branch --set-upstream master origin/master

来设置分支主机以跟踪远程分支主机

试着更新一下,结果如下:
dev has no tracked branch,Git,git

Git更新,出现Can’t update: no tracked branch错误文章来源地址https://www.toymoban.com/news/detail-645011.html

到了这里,关于Can‘t update dev_zgd has no tracked branch的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

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

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

相关文章

  • 【已解决】本地使用Git拉取代码的时候提示:master has no tracked branch的解决办法

    在idea中使用Git拉取远程代码的时候,提示错误信息:master has no tracked branch如下图所示: 需求描述:因为是从GitHub上下载的一个项目,直接下载的ZIP包,然后想把这个推送到自己Git服务器上。 操作步骤:现在自己的Git服务器上,新建了对应的项目,直接在Git页面中,添加了r

    2024年01月18日
    浏览(39)
  • 【git报错】The current branch dev has no upstream branch. To push the current branch and set the remote

    发现问题 本地新建了一个dev分支,然后把dev分支下的代码push到远程仓库中,使用git push,但是报错了,如下: fatal: The current branch dev has no upstream branch. To push the current branch and set the remote as upstream, use git push --set-upstream origin dev 翻译 错误:当前分支:dev没有远程对应的dev分支

    2024年02月11日
    浏览(48)
  • Git 分支跟踪There is no tracking information for the current branch.

    当你执行在develop分支上 git pull 返回提示: 解决办法,即按照提示: 查看本地分支的远端跟踪分支 要查看本地分支跟踪的远端分支,可以使用 git branch 命令搭配不同的选项。以下是一些常用的命令及其说明: 查看所有本地分支及对应的远端跟踪分支: 使用 -vv 选项可以显示

    2024年02月21日
    浏览(44)
  • 多种方法解决There is no tracking information for the current branch的错误

    今天发布某版本的项目,准备创建个 v0point1 分支,后期如果修改该版本,直接在该分支上修改即可。 首先,使用 git branch v0point1 命令,创建本地分支 v0point1 ,如下图所示: 其次,使用 git checkout v0point1 命令,切换到 v0point1 分支,如下图所示: 当然,我们也可以使用 git ch

    2024年02月09日
    浏览(48)
  • git 出现 There is no tracking information for the current branch. Please specify which branch you want

    问题分析:当前pull对象没有远程分支的跟踪信息,简单地来说就是你创建的这个分支没有和远程仓库中的其他分支或者master建立联系,所以导致当前分支无法进行pull操作; 解决方案: git branch --set-upstream-to=origin/remote_name local_name 注解: remote_name : 远程分支名 // 这里是你创

    2024年02月05日
    浏览(48)
  • Git出现There is no tracking information for the current branch提示的解决办法

    Git出现There is no tracking information for the current branch提示的解决办法 使用命令新建分支并切换到该分支 从远程获取代码 报错 There is no tracking information for the current branch. Please specify which branch you want to merge with. 意思是没有当前分支的追踪信息 解决: 以上两行命令可简写为 即将本

    2024年02月12日
    浏览(47)
  • fatal: The current branch master has no upstream branch.之解决方法

            没有将本地的分支与远程仓库的分支进行关联         出现这种情况主要是由于远程仓库太多,且分支较多;在默认情况下, git push 时一般会上传到 origin 下的 master 分支上,然而当repository和branch过多,而又没有设置关联时,git就会产生疑问,因为它无法判断

    2024年02月09日
    浏览(53)
  • fatal: The current branch master has no upstream branch之解决方法

            本地通过Git下载代码后进行了修改,在推送至远程仓库时缺少目标仓库地址 3.1 本地客户端远程连接目标仓库  git remote add origin https://github.com/**/*.git【自己的SSH】 3.2 推送本地代码至远程仓库分支 git push -u origin master         以上操作是在本地已经执行 add 及

    2024年02月15日
    浏览(43)
  • git远程连接推送代码报错 fatal: The current branch master has no upstream branch.

    fatal: The current branch master has no upstream branch. To push the current branch and set the remote as upstream, use     git push --set-upstream origin master To have this happen automatically for branches without a tracking upstream, see \\\'push.autoSetupRemote\\\' in \\\'git help config\\\'. 报错原因:当前的分支 \\\"master\\\" 没有与远程分支关联(也

    2024年02月05日
    浏览(43)
  • 【Git】push分支报错:fatal: The current branch 当前分支名 has no upstream branch

    示例代码: feature/file 是分支名 中文释义: 在于当前这个分支没有和任何的仓库发生关联,origin是仓库的一个指针,需要将当前的分支与这个指针之间形成关联。 直接允许以下命令即可 执行之后会在 github 上自动新建一个 feature/file 的分支。

    2024年02月11日
    浏览(57)

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

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

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

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

二维码1

领取红包

二维码2

领红包