Skip to content

Commit 650d2d0

Browse files
committed
Fix invalid ssh URL for all languages.
1 parent 0a0db20 commit 650d2d0

22 files changed

Lines changed: 24 additions & 24 deletions

File tree

ar/04-git-server/01-chapter4.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Probably the most common transport protocol for Git is SSH. This is because SSH
5252

5353
To clone a Git repository over SSH, you can specify ssh:// URL like this:
5454

55-
$ git clone ssh://user@server:project.git
55+
$ git clone ssh://user@server/project.git
5656

5757
Or you can not specify a protocol — Git assumes SSH if you aren’t explicit:
5858

az/04-git-server/01-chapter4.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Probably the most common transport protocol for Git is SSH. This is because SSH
5252

5353
To clone a Git repository over SSH, you can specify ssh:// URL like this:
5454

55-
$ git clone ssh://user@server:project.git
55+
$ git clone ssh://user@server/project.git
5656

5757
Or you can not specify a protocol — Git assumes SSH if you aren’t explicit:
5858

ca/04-git-server/01-chapter4.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Probably the most common transport protocol for Git is SSH. This is because SSH
5252

5353
To clone a Git repository over SSH, you can specify ssh:// URL like this:
5454

55-
$ git clone ssh://user@server:project.git
55+
$ git clone ssh://user@server/project.git
5656

5757
Or you can not specify a protocol — Git assumes SSH if you aren’t explicit:
5858

cs/04-git-server/01-chapter4.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Patrně nejčastějším přenosovým protokolem pro systém Git je SSH. Je to z
5252

5353
Chcete-li naklonovat repozitář Git pomocí protokolu SSH, zadejte „ssh:// URL“, například:
5454

55-
$ git clone ssh://user@server:project.git
55+
$ git clone ssh://user@server/project.git
5656

5757
Protokol ostatně ani nemusíte zadávat – pokud žádný výslovně neurčíte, Git použije SSH jako výchozí možnost:
5858

de/04-git-server/01-chapter4.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Das vermutlich gebräuchlichste Transport-Protokoll für Git ist SSH. Das hat de
9494

9595
Um ein Git Repository über SSH zu clonen, kannst du eine ssh:// URL angeben:
9696

97-
$ git clone ssh://user@server:project.git
97+
$ git clone ssh://user@server/project.git
9898

9999
<!--Or you can not specify a protocol — Git assumes SSH if you aren’t explicit:-->
100100

@@ -1325,4 +1325,4 @@ Wenn Du Deinen eigenen Server betreibst, stehen Dir natürlich alle Möglichkeit
13251325

13261326
<!--It should be fairly straightforward to determine which solution or combination of solutions is appropriate for you and your organization.-->
13271327

1328-
Es sollte Dir nicht schwerfallen eine passende Lösung für Dich, Deine Firma oder Deine Organisation zu finden.
1328+
Es sollte Dir nicht schwerfallen eine passende Lösung für Dich, Deine Firma oder Deine Organisation zu finden.

en/04-git-server/01-chapter4.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Probably the most common transport protocol for Git is SSH. This is because SSH
5252

5353
To clone a Git repository over SSH, you can specify ssh:// URL like this:
5454

55-
$ git clone ssh://user@server:project.git
55+
$ git clone ssh://user@server/project.git
5656

5757
Or you can not specify a protocol — Git assumes SSH if you aren’t explicit:
5858

es-ni/04-git-server/01-chapter4.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Probably the most common transport protocol for Git is SSH. This is because SSH
5252

5353
To clone a Git repository over SSH, you can specify ssh:// URL like this:
5454

55-
$ git clone ssh://user@server:project.git
55+
$ git clone ssh://user@server/project.git
5656

5757
Or you can not specify a protocol — Git assumes SSH if you aren’t explicit:
5858

es/04-git-server/01-chapter4.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Probablemente, SSH sea el protocolo más habitual para Git. Debido a disponibili
5252

5353
Para clonar un repositorio a través de SSH, puedes indicar una URL ssh:// tal como:
5454

55-
$ git clone ssh://user@server:project.git
55+
$ git clone ssh://user@server/project.git
5656

5757
O puedes prescindir del protocolo; Git asume SSH si no indicas nada expresamente: $ git clone user@server:project.git
5858

es/omegat-Benzirpi.tmx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19906,10 +19906,10 @@ Figura 3-4.</seg>
1990619906
</tu>
1990719907
<tu>
1990819908
<tuv lang="EN">
19909-
<seg>$ git clone ssh://user@server:project.git</seg>
19909+
<seg>$ git clone ssh://user@server/project.git</seg>
1991019910
</tuv>
1991119911
<tuv lang="ES">
19912-
<seg>$ git clone ssh://user@server:project.git</seg>
19912+
<seg>$ git clone ssh://user@server/project.git</seg>
1991319913
</tuv>
1991419914
</tu>
1991519915
<tu>

it/04-git-server/01-chapter4.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Probabilmente il protocollo più utilizzato per Git è SSH. Questo perché un ac
5252

5353
Per clonare un repository Git via SSH, puoi specificare un URL ssh:// come questo:
5454

55-
$ git clone ssh://user@server:project.git
55+
$ git clone ssh://user@server/project.git
5656

5757
O non specificare proprio il protocollo — Git utilizza SSH non lo specifichi:
5858

0 commit comments

Comments
 (0)