git pull时提示 master has no tracked branch

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

可能是因为远程仓库和本地仓库起始不一致导致的问题

git pull origin master --allow-unrelated-histories

注意:工作中,请根据具体场景,进行分析,执行此命令要慎重

原文链接文章来源地址https://www.toymoban.com/news/detail-769544.html

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

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

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

相关文章

  • git push失败,提示fatal: The current branch master has no upstream branch.的解决办法

    当项目完成想要将本地master推送到远端的码云,使用git push 提交时报错: 报错提示:没有将本地的分支与远程仓库的分支进行关联 解决办法:按照提示,键入 这时出来一个新的错误: 此时我们要执行 git pull --rebase origin master 命令将README.md拉到本地, 然后执行git push origin

    2024年02月11日
    浏览(75)
  • 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日
    浏览(45)
  • 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日
    浏览(48)
  • 【Git】Git报错:Branch ‘master‘ set up to track remote branch ‘master‘ from ‘orgin‘

    前言 :如果遇到将从git上拉取的代码,直接上传到新的git仓库地址,注意,需要修改git源,否则,会报错。 报错信息如下: Git报错:Branch ‘master’ set up to track remote branch ‘master’ from ‘orgin’ 解决方案: ①移除之前的git源: ②再次连接新的git源:

    2024年02月11日
    浏览(50)
  • Can‘t update dev_zgd has no tracked branch

    今天使用 Pycharm 时,本地在 dev 分支上,点击 VCS 更新按钮出现如下错误: 怎么解决呢? 输入以下命令: 来设置分支主机以跟踪远程分支主机 试着更新一下,结果如下: Git更新,出现Can’t update: no tracked branch错误

    2024年02月13日
    浏览(43)
  • 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日
    浏览(44)
  • fatal: The current branch master has no upstream branch.之解决方法

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

    2024年02月09日
    浏览(54)
  • git pull无效,显示 * branch master -> FETCH_HEADAlready up to date. pull无效解决方法

    本地文件夹中删除文件后 ,git pull无效。显示如下: 命令如下: 比如错删a.txt: 一个命令恢复全部文件: 参考文章如下: 【Git 教程系列第 22 篇】删除本地文件后,使用 git pull 命令从远程仓库无法拉取到被删除文件的解决方案_git 删除本地文件再pull没有_Allen Su的博客-CSDN博客

    2024年02月15日
    浏览(55)
  • git常见问题 — git pull时提示 git pull <remote> <branch>

    git pull的时候提示git pull 说明,当前的分支并没有和本地分支关联,根据提示进行下一步: 1.将指定当前工作目录工作分支,跟远程的仓库分支之间进行关联 2.再次拉取代码

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

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

    2024年02月21日
    浏览(45)

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

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

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

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

二维码1

领取红包

二维码2

领红包