I'm pulling a git repo from one of my colleagues. I usually do the following on the command line:
How do I convert this into a valid Repository URL per https://confluence.atlassian.com/display/BAMBOO058/Git ? I'm having trouble finding examples or documentation regarding additional options beyond the URL. At the moment, I'm trying the URL: <host_name>/:path/to/repo/i/want/, which produces the error
Any help greatly appreciated
Assuming you are doing this over a network file share, you need to give the part you described as
<host_name>/:path/to/repo/i/want/
as a valid UNC path:
\\host_name\path\to\repo\i\want\
If you are on Windows, or something like
host_name/path/to/repo/i/want/
on linux (The ":" in your string is not in the right place and only necessary if you are giving a port number when using HTTP(S) or SSH.)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.