1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-15 06:52:43 +01:00

Drop ssh://... as a required formatting for builtins.fetchGit

(cherry picked from commit 0b7568fb73)
This commit is contained in:
Graham Christensen 2018-08-31 19:49:56 -04:00 committed by Eelco Dolstra
parent 6202ffdce9
commit 75a041c36c

View file

@ -402,17 +402,10 @@ stdenv.mkDerivation { … }
<example>
<title>Fetching a private repository over SSH</title>
<programlisting>builtins.fetchGit {
url = "ssh://git@github.com/my-secret/repository.git";
url = "git@github.com:my-secret/repository.git";
ref = "master";
rev = "adab8b916a45068c044658c4158d81878f9ed1c3";
}</programlisting>
<note><para>
Note the URL format is not the same as <command>git
clone</command>. <function>builtins.fetchGit</function> uses
a <literal>/</literal> instead of a <literal>:</literal>
between <literal>github.com</literal> and
<literal>my-secret</literal>.</para></note>
</example>
<example>