From d051e66b1370e74ceb37a0d43737f3b0bc383971 Mon Sep 17 00:00:00 2001 From: Sandra McCann Date: Fri, 2 Oct 2020 14:41:33 -0400 Subject: [PATCH] git - clarify behavior of dest parameter (#71950) --- lib/ansible/modules/git.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ansible/modules/git.py b/lib/ansible/modules/git.py index 737f442164c..8bf2a5344eb 100644 --- a/lib/ansible/modules/git.py +++ b/lib/ansible/modules/git.py @@ -28,6 +28,8 @@ options: dest: description: - The path of where the repository should be checked out. This + is equivalent to C(git clone [repo_url] [directory]). The repository + named in C(repo) is not appended to this path and the destination directory must be empty. This parameter is required, unless C(clone) is set to C(no). type: path required: true