Atlassian Stash v2.10.1
$ git pull
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
$ ssh -p 7999 git@<stash-server>
shell request failed on channel 0
So not an ssh/authentication issue. Was working yesterday, not working this morning, working this afternoon, not working this evening.
What could it be?
Thanks.
Under load, Stash may be unable to handle all requests in an elegant way.
Thank you, Thiago and Balazs, for your help.
here is how I got mine going.
https://stackoverflow.com/questions/13509293/git-fatal-could-not-read-from-remote-repository
Look for Tombarts answer.
In your .git/config add your username to the url and everything should work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello, I have same troubles.
I have two operation system Windows 10 and Virtual Mac OS in one machine. Everything was good,until one day i have meet trouble with push/pull my commits in virtual Mac OS. I can't push or pull from my repository only Mac OS.
I passed verification "iCloud Security" and after this happened.
What I've done:
1. I cleared ``known_hosts``
2. I Added new ssh-key in bitbucket.org
3. Tried to clone this repository on another folder.
Error message:
```
packet_write_wait: Connection to 18.205.93.0 port 22: Broken pipe
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
```
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Never mind, I migrated repository to gitlab.com.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If someone else wanders into this thread - I was accidentally sudoed into bash. Apparently that's a no go on the push - see https://confluence.atlassian.com/bitbucket/troubleshoot-ssh-issues-271943403.html
Logged off the sudo and was able to push again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You have to make sure that your repository name is the same as the one in your url link
e.g git remote add origin git@bitbucket.org:username/your-repository-name.git
Then you push.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have this same error per now. It worked earlier but not now.
I can clone using https, but not ssh. The error shown is the same as presented in this question...
In bitbucket.log there is this:
2017-10-09 18:12:52,988 INFO [ssh-scm-request-handler] jenkins @XQ6B4Fx1092x38x0 1p1nx9x 127.0.0.1 SSH - git-upload-pack '/lif/com.liferay.portal.plugins.sdk-7.0.git' c.a.b.i.ssh.server.SshCommandAdapter git was successfully authenticated via public key, but is no longer active in the underlyinguser directory. The request has been blocked
I'm pretty sure the OP would have had something similar in Stash back then...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Since you say "Was working yesterday, not working this morning, working this afternoon, not working this evening", I doubt that Thiago is right about your user rights. (He might be right, but then somebody took your rights away to the repo, gave them back and took them away again.)
Try these:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Confirmed, I can browse the contents of the repo on the Stash web interface. The "shell request failed on channel 0" proves there is nothing wrong with the network (server accessibility) or the ssh authentication. We are exploring a possible loading issue (tens-of-thousands of accesses, yesterday, from a CI server).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Tyler,
It seems that you have a SSH key uploaded but no read access to the repository in Stash as per the error below:
$ git pull fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
To solve that, please talk to your Stash admin so you can be assigned the right permissions.
The error below is expected because it should not be possible to get a remote shell via Stash (we use http://mina.apache.org/sshd-project/index.html for our SSH server):
$ ssh -p 7999 git@<stash-server> shell request failed on channel 0
Please refer to https://jira.atlassian.com/browse/STASH-3372
Best,
Thiago
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The admin has not being revoking, then reissuing the access permissions. Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Tyler. I am glad that this answer has helped you and you found the culprit ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.