Today tried to push to github and magit displayed this on the
minibuffer:
Running git push -v github key-groups:nil
and after a while the list of unpushed commits was left intact. Then
checked that a branch named `nil' was created on Github.
This is my config file:
[user]
email = [email protected]
name = "Oscar Fuentes"
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = http://github.com/philjackson/magit.git
[branch "master"]
remote = origin
merge = refs/heads/master
[remote "github"]
url = ssh://[email protected]/oscarfv/magit.git
fetch = +refs/heads/*:refs/remotes/github/*
[branch "key-groups"]
remote = github
I guess that `magit-push' fails here:
(let* ...
(ref-branch (magit-get "branch" branch "merge")))
assigning `nil' to `ref-branch'.
I have no time right now to dive into this issue right now so I ask to
the experts: what can cause this?