mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix use of unauthenticated connection examples in git module docs
Ref: https://git-scm.com/book/ch4-1.html#The-Git-Protocol
This commit is contained in:
parent
6318229bc4
commit
bbc6af6749
1 changed files with 3 additions and 3 deletions
|
@ -200,7 +200,7 @@ notes:
|
|||
EXAMPLES = '''
|
||||
# Example git checkout from Ansible Playbooks
|
||||
- git:
|
||||
repo: git://foosball.example.org/path/to/repo.git
|
||||
repo: 'https://foosball.example.org/path/to/repo.git'
|
||||
dest: /srv/checkout
|
||||
version: release-0.22
|
||||
|
||||
|
@ -211,14 +211,14 @@ EXAMPLES = '''
|
|||
|
||||
# Example just ensuring the repo checkout exists
|
||||
- git:
|
||||
repo: git://foosball.example.org/path/to/repo.git
|
||||
repo: 'https://foosball.example.org/path/to/repo.git'
|
||||
dest: /srv/checkout
|
||||
update: no
|
||||
|
||||
# Example just get information about the repository whether or not it has
|
||||
# already been cloned locally.
|
||||
- git:
|
||||
repo: git://foosball.example.org/path/to/repo.git
|
||||
repo: 'https://foosball.example.org/path/to/repo.git'
|
||||
dest: /srv/checkout
|
||||
clone: no
|
||||
update: no
|
||||
|
|
Loading…
Reference in a new issue