From b63512774b7df8056fe34138b97115f1663d88d4 Mon Sep 17 00:00:00 2001 From: Daniel Chabrowski Date: Wed, 26 May 2021 15:27:18 +0200 Subject: [PATCH] Update example and description of git:single_branch (#74796) --- lib/ansible/modules/git.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/git.py b/lib/ansible/modules/git.py index f161836d5fa..07c6a76c1d5 100644 --- a/lib/ansible/modules/git.py +++ b/lib/ansible/modules/git.py @@ -150,7 +150,7 @@ options: single_branch: description: - - Clone only the history leading to the tip of the specified I(branch). + - Clone only the history leading to the tip of the specified revision. type: bool default: 'no' version_added: '2.11' @@ -268,8 +268,10 @@ EXAMPLES = ''' - name: Example clone of a single branch ansible.builtin.git: + repo: https://github.com/ansible/ansible-examples.git + dest: /src/ansible-examples single_branch: yes - branch: master + version: master - name: Avoid hanging when http(s) password is missing ansible.builtin.git: