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: