2024-10-01 00:19:21 +02:00
|
|
|
---
|
|
|
|
# Configuring git
|
|
|
|
|
|
|
|
- name: Configuring git username
|
2024-10-01 09:17:39 +02:00
|
|
|
community.general.git_config:
|
2024-10-01 00:19:21 +02:00
|
|
|
name: user.name
|
|
|
|
scope: global
|
2024-10-01 09:17:39 +02:00
|
|
|
value: "{{ git_username }}"
|
2024-10-01 00:19:21 +02:00
|
|
|
|
|
|
|
- name: Configuring git email
|
2024-10-01 09:17:39 +02:00
|
|
|
community.general.git_config:
|
2024-10-01 00:19:21 +02:00
|
|
|
name: user.email
|
|
|
|
scope: global
|
2024-10-01 09:17:39 +02:00
|
|
|
value: "{{ git_email }}"
|