• git提示:There is no tracking information for the current branch


    问题

    使用git pull拉取远程分支代码的时候,提示:
    > There is no tracking information for the current branch.
    Please specify which branch you want to merge with.
     
    这个报错的意思是:新建的本地分支在推送远程仓库时,本地的分支与远程分支没有建立关联。

    查看关联

    git branch -vv:可以查看本地分支与远程仓库的关联关系
    可以看到并没有关联
    关联后:
     

    解决

    按照git给的提示git branch --set-upstream-to=origin/SP_4.2.1_20200703_alpha
    版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
     
    If you wish to set tracking information for this branch you can do so with:
        git branch --set-upstream-to=origin/<branch> dev
     
     
     

      读后有收获,小礼物走一走,请作者喝咖啡。

    赞赏支持

  • 相关阅读:
    苹果输入手机号变用户的名字
    iOS 关于UITableView的黑科技
    iOS 详解NSObject协议
    iOS 用xib自定义View
    iOS 关于定位你该注意的那些事
    iOS 内存泄漏
    Swift应用案例 2.闭包入门到精通
    Swift应用案例 1.无限轮播
    多库共存-冲突问题
    多库共存-冲突问题
  • 原文地址:https://www.cnblogs.com/east7/p/15202829.html
Copyright © 2020-2023  润新知