ansible.builtin.git module – Deploy software (or files) from git checkouts
Note
This module is part of ansible-core
and included in all Ansible
installations. In most cases, you can use the short
module name
git
even without specifying the collections keyword.
However, we recommend you use the Fully Qualified Collection Name (FQCN) ansible.builtin.git
for easy linking to the
module documentation and to avoid conflicting with other collections that may have
the same module name.
Synopsis
Manage git checkouts of repositories to deploy files or software.
Requirements
The below requirements are needed on the host that executes this module.
git>=1.7.1 (the command line tool)
Parameters
Parameter |
Comments |
---|---|
Will ensure or not that Be aware that this disables a protection against MITM attacks. Those using OpenSSH >= 7.5 might want to use Choices:
|
|
As of OpenSSH 7.5, Choices:
|
|
Specify archive file path with extension. If specified, creates an archive file of the specified format containing the tree structure for the source tree. Allowed archive formats [“zip”, “tar.gz”, “tar”, “tgz”]. This will clone and perform git archive from local directory as not all git servers support git archive. |
|
Specify a prefix to add to each file path in archive. Requires |
|
If Choices:
|
|
If Choices:
|
|
Create a shallow clone with a history truncated to the specified number or revisions. The minimum possible value is |
|
Path to git executable to use. If not supplied, the normal mechanism for resolving binary paths will be used. |
|
If Choices:
|
|
A list of trusted GPG fingerprints to compare to the fingerprint of the GPG-signed commit. Only used when Use of this feature requires Git 2.6+ due to its reliance on git’s Alias Alias Default: |
|
Specify an optional private key file path, on the target host, to use for the checkout. This ensures |
|
If Choices:
|
|
Reference repository (see |
|
Add an additional refspec to be fetched. If version is set to a SHA-1 not reachable from any branch or tag, this option may be necessary to specify the ref containing the SHA-1. Uses the same syntax as the |
|
Name of the remote. Default: |
|
git, SSH, or HTTP(S) protocol address of the git repository. |
|
The path to place the cloned repository. If specified, Git repository can be separated from working tree. |
|
Clone only the history leading to the tip of the specified revision. Choices:
|
|
Options git will pass to ssh when used as protocol, it works via For older versions it appends Other options can add to this list, like An example value could be The module ensures that |
|
If Choices:
|
|
The umask to set before doing any checkouts, or any other repository maintenance. |
|
If Operations like archive will work on the existing (old) repository and might not respond to changes to the options version or remote. Choices:
|
|
If Choices:
|
|
What version of the repository to check out. This can be the literal string Default: |
Attributes
Attribute |
Support |
Description |
---|---|---|
Support: full |
Can run in check_mode and return changed status prediction without modifying target, if not supported the action will be skipped. |
|
Support: full |
Will return details on what has changed (or possibly needs changing in check_mode), when in diff mode |
|
Platform: posix |
Target OS/families that can be operated against |
Notes
Note
If the task seems to be hanging, first verify remote host is in
known_hosts
. SSH will prompt user to authorize the first contact with a remote host. To avoid this prompt, one solution is to use the option accept_hostkey. Another solution is to add the remote host public key in/etc/ssh/ssh_known_hosts
before calling the git module, with the following command:ssh-keyscan -H remote_host.com >> /etc/ssh/ssh_known_hosts
.
Examples
- name: Git checkout
ansible.builtin.git:
repo: 'https://github.com/ansible/ansible.git'
dest: /tmp/checkout
version: release-0.22
- name: Read-write git checkout from github
ansible.builtin.git:
repo: git@github.com:ansible/ansible.git
dest: /tmp/checkout
- name: Just ensuring the repo checkout exists
ansible.builtin.git:
repo: 'https://github.com/ansible/ansible.git'
dest: /tmp/checkout
update: no
- name: Just get information about the repository whether or not it has already been cloned locally
ansible.builtin.git:
repo: git@github.com:ansible/ansible.git
dest: /tmp/checkout
clone: no
update: no
- name: Checkout a github repo and use refspec to fetch all pull requests
ansible.builtin.git:
repo: 'https://github.com/ansible/ansible.git'
dest: /tmp/checkout
refspec: '+refs/pull/*:refs/heads/*'
- name: Create git archive from repo
ansible.builtin.git:
repo: git@github.com:ansible/ansible.git
dest: /tmp/checkout
archive: /tmp/ansible.zip
- name: Clone a repo with separate git directory
ansible.builtin.git:
repo: 'https://github.com/ansible/ansible.git'
dest: /tmp/checkout
separate_git_dir: /tmp/repo
- name: Example clone of a single branch
ansible.builtin.git:
repo: git@github.com:ansible/ansible.git
dest: /tmp/checkout
single_branch: yes
version: master
- name: Avoid hanging when http(s) password is missing
ansible.builtin.git:
repo: 'https://github.com/ansible/ansible.git'
dest: /tmp/checkout
environment:
GIT_TERMINAL_PROMPT: 0 # reports "terminal prompts disabled" on missing password
# or GIT_ASKPASS: /bin/true # for git before version 2.3.0, reports "Authentication failed" on missing password
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
Last commit revision of the repository retrieved during the update. Returned: success Sample: |
|
Commit revision before the repository was updated, “null” for new repository. Returned: success Sample: |
|
Contains the original path of .git directory if it is changed. Returned: success Sample: |
|
Contains the new path of .git directory if it is changed. Returned: success Sample: |
|
Contains True or False whether or not the remote URL was changed. Returned: success Sample: |
|
List of warnings if requested features were not available due to a too old git version. Returned: error Sample: |