0
I’m in a project and I can change Branch (Checkout), fetch, merge, but pull I can’t, returns the message
fatal: Unable to access '': The requested URL returned error: 502
I’ve done several tests and nothing.
0
I’m in a project and I can change Branch (Checkout), fetch, merge, but pull I can’t, returns the message
fatal: Unable to access '': The requested URL returned error: 502
I’ve done several tests and nothing.
Browser other questions tagged github gitlab
You are not signed in. Login or sign up in order to post.
Bad on the server bro, which one are you using? Ask your question the output of the command
git remote show origin
. Probably 502 refers to an HTTP status, the "Bad Gateway".– rodorgas
@Daniel Campaign, take a look here
– Denis Rudnei de Souza
@rodorgas , the command returns " fatal: Unable to access 'http://[email protected]/cti-architecture/Migrations.git/': The requested URL returned error: 502 ". And I think the server is not bad, because I can do Push (proof that there is connection).
– Daniel Campanha
The output you put in here is git pull, not git remote, right? You can have in . git/config one server configured for pull and another for push, that would explain the difference. Please include in the question the output of
git remote -v
. You could include tbm itself . git/config, but remove sensitive information before posting.– rodorgas
is @rodorgas, just got to reset and pull my coworker, it worked here.. The previous problem was making the "halfway".. but thank you very much ! I hope it helps other people around here too. ;)
– Daniel Campanha