FredrikNoren / ungit

The easiest way to use git. On any platform. Anywhere.
MIT License
10.43k stars 637 forks source link

Missing url port #1082

Open alexandre1985 opened 6 years ago

alexandre1985 commented 6 years ago

I have a remote that is: ssh://gogs@mydomain.com:3000/test/test.git When I use ungit, after inserting many times my ssh passphrase, I get an error that it could not read the gogs@mydomain.com (remote I guess) repository. Since it says mydomain.com instead of mydomain.com:3000 maybe somewhere it is cutting the url port

jung-kim commented 6 years ago

Hmm, can you give me the console output when this happens? Also, what does you .../.git/config looks like? it should looks something like below

[remote "test"]
    url = ssh://gogs@mydomain.com:3000/test/test.git
    fetch = +refs/heads/*:refs/remotes/tes/*