-
BackgroundAt some point I had forge working well with github and all kind of repos. What I've done
What I keep getting
I'm running out of ideas on what is going on , what to try or how to debug this issue to make it work again. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
This error isn't coming from Forge but Git. That makes this more of a Magit issue than a Forge issue, but really it is either a Emacs configuration issue or even a Git configuration issue. Where are you getting that and is it prefixed with the
So you can It has been a long time since someone last asked me for help with this, so I don't exactly remember where all the footguns are. Generally speaking if it works in a shell but not Emacs, the issue is that the user configured the shell but did not configure Emacs accordingly. A first thing you can try is to type A common solution to the problem of Emacs not just magically picking up the configuration of the shell, seem to be the |
Beta Was this translation helpful? Give feedback.
-
main culprit wasn't shell, was something involving ssh identities and the upstream url which - yet - I cannot explain why didn't happened before. It's working now but I'm not sure if I found the underlying issue or just a way to circumvent it. Thanks much! |
Beta Was this translation helpful? Give feedback.
This error isn't coming from Forge but Git. That makes this more of a Magit issue than a Forge issue, but really it is either a Emacs configuration issue or even a Git configuration issue.
Where are you getting that and is it prefixed with the
git
command that produced that error?So you can
git fetch
on the command line, but the equivalentmagit-fetch
also works? The above error indicates thatmagit-fetch
does not work. (That's why I asked above about how you got that error.)It has been a long time sin…