That is very inspiring Thomas!
Hmm. What happens with `git push` from console? (see tab button beside [commit, diff, file tree, ...] in Git Extensions, or just from a regular command prompt). Any error messages?
Do you have more than one GitHub account? I've run into problems with Git Extensions and multiple GitHub identities. I think I've sorted it now, but I've thought that before.
Hmm. What happens with `git push` from console? (see tab button beside [commit, diff, file tree, ...] in Git Extensions, or just from a regular command prompt). Any error messages?That pushes to my fork, but not upstream to Leo. It works fine. Do you think it's worth cloning Leo using Git-Ext? Right now, I have the fork, managed with Git Ext, and the Leo clone, managed by Github Desktop.
I already had the upstream origin configured. To follow your suggestions, I created a new one and deactivated the previous one. I still get the same results, and in thedialog to manage remotes, using the "Test Connection" button gave this:Unable to open connection:
Host does not existHmm, I wonder if that could be my Windows firewall preventing the outbound connection because it's ssh?
Hmm, I wonder if that could be my Windows firewall preventing the outbound connection because it's ssh?
elevate git config --system --unset credential.helper
git config --global --unset credential.helper
then for each repo:
git config --unset credential.helper
(elevate refers to https://code.kliu.org/misc/elevate/)