mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
8 lines
322 B
YAML
8 lines
322 B
YAML
- name: Set git user email to {{user_email}}
|
|
ansible.builtin.shell: git config --global user.email "{{user_email}}"
|
|
- name: Set git user name to {{user_full_name}}
|
|
ansible.builtin.shell: git config --global user.name "{{user_full_name}}"
|
|
- name: install git
|
|
community.general.pacman:
|
|
name: git
|
|
state: present |