mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-18 12:52:47 +00:00
QA /technical/2010/01/clone-git-repo-on-non-standard-port/
This commit is contained in:
parent
04dfd68112
commit
14ebf11443
1 changed files with 2 additions and 4 deletions
|
@ -1,7 +1,5 @@
|
|||
I use an SSH tunnel to access my computer at work from home. On occasion I want to clone a git repo that is on the remote server. To do so its necessary to specify the port, which doesn't work with the conventional clone syntax.
|
||||
|
||||
E.g. <code>git clone hostname:path/to/repo</code>. The solution is to be a little more specific:
|
||||
E.g. `git clone hostname:path/to/repo`. The solution is to be a little more specific:
|
||||
|
||||
<pre>
|
||||
git clone ssh://localhost:2222/~username/path/to/repo
|
||||
</pre>
|
Loading…
Reference in a new issue