GitKraken推送失败,错误消息“推送失败无法读取属性'fullName'未定义”

问题描述:

我试图推送并创建从我的本地功能分支的拉请求,像往常一样,在我的功能分支和权利-clicking遥控器上的原产地/开发分枝(我使用Git流量),而这个错误消息蹦出来:GitKraken推送失败,错误消息“推送失败无法读取属性'fullName'未定义”

enter image description here

无法找到与该错误消息什么。有任何想法吗?

我有这个问题,以及在当前本地主机或原点/主机后面提交时有HEAD标记。

尝试双击您的本地主人(消除HEAD),然后推送您的更改。

请注意,如果您没有本地主设备,请右键单击远程原点主设备并选择“检出原点/主设备”。然后拉,提交,推送您的更改。

+2

注意:双击左侧栏而不是提交历史记录。 – notedible

+0

对于本地主或远程主或无关紧要? – Nonlin

+0

对于本地主 – notedible

我有同样的问题。我的分支名称里有一个撇号(Richie's Versions)。我从现有分支创建了一个新分支(基本上是现有分支的一个副本),并给它起了一个没有撇号(RichiesVersion)的名称,并解决了这个问题。推新的分支运作良好。

@notedible修复不适合我。但它让我简单地去命令行并做一个git status

$ git status 
On branch feature/RES-523 
Your branch and 'origin/feature/RES-523' have diverged, 
and have 13 and 2 different commits each, respectively. 
    (use "git pull" to merge the remote branch into yours) 
nothing to commit, working tree clean 

$ git pull 
From https://bitbucket.org/my-repo 
* [new branch]  feature/RES-523 -> origin/feature/RES-523 
Auto packing the repository in background for optimum performance. 
See "git help gc" for manual housekeeping. 
Already up-to-date. 

热潮!很好去。