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

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

问题


这个报错的意思是:新建的本地分支在推送远程仓库时,本地的分支与远程分支没有建立关联。

2289b68f61754f4d9a817649cd919f37.png


查看关联


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

可以看到并没有关联

974e5d8660814fadae9cf11748e19e91.png


解决

按照git给的提示git branch --set-upstream-to=origin/test_alpha


0f4212083eb1411e9af6ef6347dfe785.png

目录
相关文章
|
编译器 开发工具 git
【Git异常】You are in ‘detached HEAD‘ state, which means that you‘re not on any branch Checkout a branch
【Git异常】You are in ‘detached HEAD‘ state, which means that you‘re not on any branch Checkout a branch
298 0
|
5月前
|
开发工具 git
Git 中的 fork、branch 和 clone
【8月更文挑战第27天】
260 5
|
8月前
|
开发工具 git
git branch (branchname)
git branch (branchname) 是 Git 中创建和管理分支的一种命令。通过这个命令,你可以根据指定的分支名创建一个新的分支,或者跳转到已经存在的分支上。branchname 参数是可选的,如果不指定,则默认创建或切换到主分支(master 或 main)。
164 8
|
5月前
|
Java 开发工具 Android开发
Android Studio利用Build.gradle导入Git commit ID、Git Branch、User等版本信息
本文介绍了在Android Studio项目中通过修改`build.gradle`脚本来自动获取并添加Git的commit ID、branch名称和用户信息到BuildConfig类中,从而实现在编译时将这些版本信息加入到APK中的方法。
120 0
|
7月前
|
开发工具 git
idea的git reset current branch to here操作详解
idea的git reset current branch to here操作详解
747 1
|
8月前
|
开发工具 git
避免git产生Merge branch 'foo' into 'bar'提交
避免git产生Merge branch 'foo' into 'bar'提交
111 3
|
开发工具 git
git branch之后出现end,无法退出终端
git branch之后出现end,无法退出终端
760 0
git branch之后出现end,无法退出终端
|
Shell 开发工具 git
git fatal: branch ‘master‘ does not exist
git fatal: branch ‘master‘ does not exist
830 0
git fatal: branch ‘master‘ does not exist
|
开发工具 git
git branch分支怎么玩来看看吧
有时候我们在开发的过程中,难免有很多不一样的情况,有时候可能就需要根据本地的分支进行创建临时的分支,然后又有时候需要根据同事创建的远程分支,再来创建本地分支。
125 0