From 26a677c2a921f30204a2911dd1482cb087c3124f Mon Sep 17 00:00:00 2001 From: Bernardo Vieira da Silva Date: Mon, 26 Nov 2018 20:35:08 +0000 Subject: [PATCH] Update git example (#49098) * Update git example * set correct url format for ssh --- lib/ansible/modules/source_control/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/source_control/git.py b/lib/ansible/modules/source_control/git.py index 1f663bba6fd..f2b62b96d8b 100644 --- a/lib/ansible/modules/source_control/git.py +++ b/lib/ansible/modules/source_control/git.py @@ -187,7 +187,7 @@ EXAMPLES = ''' # Example read-write git checkout from github - git: - repo: ssh://git@github.com/mylogin/hello.git + repo: git@github.com:mylogin/hello.git dest: /home/mylogin/hello # Example just ensuring the repo checkout exists