replaced workstation-git with git-client

This commit is contained in:
2023-08-22 23:05:18 +02:00
parent 42cdec90ac
commit 08b13e86f9
5 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
- 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