I created a remote Git repository and now I'm trying to clone it onto a different computer using Sourcetree. However, every time I type something into the "Source Path/URL" field, it gives me an error that says "This is not a valid source path/URL." This is what I've tried so far:
- "git://12.345.678.90/"
- "git://12.345.678.90/.git/"
- "http://12.345.678.90/.git/"
- "http://12.345.678.90/"
- "ftp://12.345.678.90/"
- "ftp://12.345.678.90/.git/"
- "rsync://12.345.678.90/"
- "rsync://12.345.678.90/.git/"
I've been using the Git documentation and stuff I've found by searching google. One thing I've noticed is that a lot of people's clone URLs look something similar to one of these:
- 12.345.678.90/path/to/repo.git
- ssh://12.345.678.90/path/to/repo.git
The server that the master repository lives on does not support SSH. Also, the repository is located in the website's root folder (which is not the root folder of the server.) Another thing is that my repository doesn't have a name. When I look at it in the file explorer (it's a Windows server), it's merely listed as ".git".
Note 1: All of the URLs I used, I used without quotes. When I first typed this out, it automatically converted half of them into links.
Note 2: For the sake of privacy, I've used a placeholder IP address in place of the real one.