當前位置:
首頁 >
Git之提示There is no tracking information for the current branch.
發布時間:2023/12/4
35
豆豆
生活随笔
收集整理的這篇文章主要介紹了
Git之提示There is no tracking information for the current branch.
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1 問題
我項目比如是0.2分支,我需要修改項目的git地址,然后再pull新的代碼
1)修改github地址(讀者可以忽略)
1.git remote 查看所有遠程倉庫 2.git remote rm origin 刪除之前的版本庫 3.git remote add origin http://****.git 增加新的地址項目已經切換新的git地址了,然后我現在需要拉代碼
git pull提示錯誤如下
?
IGG@A12128 MINGW64 /f/browesr/program/*** (**-0.2) $ git pull There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details.git pull <remote> <branch>If you wish to set tracking information for this branch you can do so with:git branch --set-upstream-to=origin/<branch> browser-0.2說明提示當前branch沒有跟蹤信息
?
?
?
?
?
?
?
?
2 解決辦法
git branch --set-upstream-to=origin/當前分支名字 當前分支名字git branch --set-upstream-to=origin/****-0.2 ****-0.2 git pull就可以了
總結
以上是生活随笔為你收集整理的Git之提示There is no tracking information for the current branch.的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Git之cherry-pick命令
- 下一篇: Android之解决主页面Activit