This is a minor problem for me because I have a workaround but I would like to tidy things up.
I have a remote repo which I can push and pull without problems from the command line. So the git remote stuff is working just fine. When I do `git remote -v` I see this:
```
origin myuser@xxxxxxxxxxxx:/home4/myuser/mysite.git (fetch)
origin myuser@xxxxxxxxxxxx:/home4/myuser/mysite.git (push)
```
When I try and push from within Eclipse it fails with Authentication error and I don't know why. Specifically:
```
Can't connect to any repository: myuser@xxxxxxxxxxxx:/home4/myuser/mysite.git (myuser@xxxxxxxxxxxx:/home4/myuser/mysite.git: Too many authentication failures)
```
I actually have two remote repositories. One is on an in-house machine on my local network and that works just fine, the other (which gives an error from Egit) is on BlueHost..
I found [this post in StackOverflow](
https://stackoverflow.com/a/18562899) which looked promising but it refers to Window > Show View > Other > Git Repositories. On my system that last option is greyed out.
My Eclipse version is 4.33.0. Egit is 6.7.0 which has been pulled from the Eclipse Marketplace. My repositories (working and non working) were created by a `git init --bare` command, so this isn't Github or similar.