Remove git:// urls from docsite and from packaging (#30459)

It's almost always preferable to clone by way of https:// rather than
using the bare git:// protocol. Not only does https:// provide
stronger guarantees it also plays nicer with corporate proxies, etc.
This commit is contained in:
Andreas Olsson 2017-10-03 21:16:25 +02:00 committed by Toshio Kuratomi
parent 2d70dc7f21
commit ba0b91b51b
4 changed files with 7 additions and 7 deletions

View file

@ -193,7 +193,7 @@ Deploying From Source Control
Deploy your webapp straight from git::
$ ansible webservers -m git -a "repo=git://foo.example.org/repo.git dest=/srv/myapp version=HEAD"
$ ansible webservers -m git -a "repo=https://foo.example.org/repo.git dest=/srv/myapp version=HEAD"
Since Ansible modules can notify change handlers it is possible to
tell Ansible to run specific tasks when the code is updated, such as