Use GitHub's recommended clone URLs (HTTPS)

Decreases support overhead in case users run into trouble by following
these commands.
This commit is contained in:
Axon 2016-04-09 02:13:12 +00:00
parent 9f28991c6e
commit 8acbf3f563
No known key found for this signature in database
GPG Key ID: 8CE137352A019A17

View File

@ -26,19 +26,19 @@ All of our repositories are available under the [QubesOS GitHub account].
To clone a repository:
~~~
git clone git://github.com/QubesOS/<repo_name>.git <repo_name>
git clone https://github.com/QubesOS/<repo_name>.git <repo_name>
~~~
e.g.:
~~~
git clone git://github.com/QubesOS/qubes-core-admin.git core-admin
git clone https://github.com/QubesOS/qubes-core-admin.git core-admin
~~~
To clone **all** of our repositories in a single command:
~~~
curl "https://api.github.com/orgs/QubesOS/repos?page=1&per_page=100" | grep -e 'git_url*' | cut -d \" -f 4 | xargs -L1 git clone
curl "https://api.github.com/orgs/QubesOS/repos?page=1&per_page=100" | grep -e 'clone_url*' | cut -d \" -f 4 | xargs -L1 git clone
~~~
To update (git fetch) **all** of these repositories in a single command: