Dear Atlassian,
My company uses Stash for its GIT repository. A common clone command is something like:
git clone ssh://git@stash.mycompany.com:7549/code/mycode.git.
Problem is that port 7549 is being blocked.
Is there a way to either use port 443 or bypass?
Thank You,
Craig
Hi Craig,
What happens if you try the following command? (Make sure your stash is listening on port 443)
git clone ssh://git@stash.mycompany.com:443/<accountname>/<reponame>/
Regards,
Renato Rudnicki
Thanks, that is good advice. I did try it and got the error ssh: connect to host stash.mycompany.com port 443: Bad file number. But it was worth trying:)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can always use the https (or http depending up on your configuration) protocol for connecting to your repo. Get the clone url from your repository.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In Stash, when you hit "Clone", the box that says "SSH" is a pull-down, and you can select "HTTP" instead to see the HTTP URL, which should be something like: http://user@stash.mycompany.com/scm/code/mycode.git - maybe with a port number thrown in there.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
first thank you for the quick responses! I did try something like https://craig.motell@mycompany.com@stash.mycompany.com/scm/code/mycode.git and https://craig.motell@stash.mycompany.com/scm/code/mycode.git very close to what you recommend, but it brings me to the repository and doesn't clone the code. The URL is the one recommended by stash when you First Select clone and then select "HTTP" vice "SSH". So maybe missing something, like adding a clone command to the URL or password? Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Where are you putting that URL? it should be part of the git command, like "git clone <url>" at the git command line or configured as the URL for the repo in SourceTree - not entered directly into a browser
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tim, Trying to go away from command line. The command requires a port number in the SSH command, which I can't use. But you may of hit on something. Maybe I need to get SourceTree for the HTTPS command to work. I was trying to use an HTTPS URL outside of SourceTree because SourceTree is not currently allowed in Company. So perhaps should try and get SourceTree to proceed with HTTPS type of cloning? Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You do no need Sourcetree for https. It should work from command line. Are you doing "git clone <url>"? What are you getting when you do that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jobin, Thanks the problem discussed here is that I can seem to use command line. In particular, the port number is required and not allowed through company firewall. I'm going to see if company will allow SourceTree as my next option. Appreciate your response.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If the traffic is being blocked at the firewall, it's not going to matter whether you use SourceTree or the git command line. SourceTree is just a graphical frontend for git. Whether using SourceTree or the git command line or any other git client, you'll need to specify the URL for your repo - which can be either an SSH url or an HTTP url.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.