15 lines
292 B
YAML
15 lines
292 B
YAML
|
---
|
||
|
# Configuring git
|
||
|
|
||
|
- name: Configuring git username
|
||
|
ansible.builtin.git_config:
|
||
|
name: user.name
|
||
|
scope: global
|
||
|
value: "Emiliano Vavassori"
|
||
|
|
||
|
- name: Configuring git email
|
||
|
ansible.builtin.git_config:
|
||
|
name: user.email
|
||
|
scope: global
|
||
|
value: syntaxerrormmm@gmail.com
|