doc: change git:// links to https:// (#44395)

The server is not verified over the git:// transfer protocol. If you
clone a repository over git://, you should check if the latest commit's
hash is correct.

On the other hand, https:// will always verify the server automatically,
using certificate authorities.

Changed files
+5 -5
doc
nixos
doc
manual
configuration
development
+1 -1
README.md
···
[nixpkgs-channels](https://github.com/NixOS/nixpkgs-channels.git) as a remote:
```
-
% git remote add channels git://github.com/NixOS/nixpkgs-channels.git
+
% git remote add channels https://github.com/NixOS/nixpkgs-channels.git
```
For stability and maximum binary package support, it is recommended to maintain
+1 -1
doc/quick-start.xml
···
<para>
Checkout the Nixpkgs source tree:
<screen>
-
$ git clone git://github.com/NixOS/nixpkgs.git
+
$ git clone https://github.com/NixOS/nixpkgs
$ cd nixpkgs</screen>
</para>
</listitem>
+1 -1
nixos/doc/manual/configuration/adding-custom-packages.xml
···
xlink:href="http://nixos.org/nixpkgs/manual">Nixpkgs
manual</link>. In short, you clone Nixpkgs:
<screen>
-
$ git clone git://github.com/NixOS/nixpkgs.git
+
$ git clone https://github.com/NixOS/nixpkgs
$ cd nixpkgs
</screen>
Then you write and test the package as described in the Nixpkgs manual.
+2 -2
nixos/doc/manual/development/sources.xml
···
modify NixOS, however, you should check out the latest sources from Git. This
is as follows:
<screen>
-
$ git clone git://github.com/NixOS/nixpkgs.git
+
$ git clone https://github.com/NixOS/nixpkgs
$ cd nixpkgs
-
$ git remote add channels git://github.com/NixOS/nixpkgs-channels.git
+
$ git remote add channels https://github.com/NixOS/nixpkgs-channels
$ git remote update channels
</screen>
This will check out the latest Nixpkgs sources to