I've set up a local git repository on my computer, and I'm trying to push that to a newly created Bitbucket account.
The problem is that Bitbucket gives me an ssh
url to push to, but the network I'm on (university) has the ssh port blocked for external ssh. So that fails, and if I try to replace ssh://
with https://
it keeps telling me that authentication has failed.
Is there a way to push to bitbucket without using ssh
?
username
is your own username, the secondusername
is the team name. So to connect as "username" to "repository" by "teamname", the URL would behttps://[email protected]/teamname/repository.git
– Gaudette