Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Push fails in GitKraken with errormessage "Push Failed cannot read property 'fullName' of undefined"

I was trying to push and create a pull-request from my local feature-branch, as usual, being in my feature-branch and right-clicking on the remote origin/develop -branch (I'm using Git Flow), and this error message popped out:

enter image description here

Can't find anything with that error message. Any ideas?

like image 215
Steve Waters Avatar asked Mar 09 '17 11:03

Steve Waters


1 Answers

I had this problem as well when there was a HEAD tag at a commit behind the current local master or origin/master.

Try double-clicking your local master (which eliminates HEAD) and then push your changes.

Note that if you do not have a local master, right-click on remote origin master and choose 'Checkout origin/master'. Then pull, commit, push your changes.

like image 200
notedible Avatar answered Sep 18 '22 13:09

notedible