15 lines
289 B
YAML
15 lines
289 B
YAML
---
|
|
# Configuring git
|
|
|
|
- name: Configuring git username
|
|
community.general.git_config:
|
|
name: user.name
|
|
scope: global
|
|
value: "{{ git_username }}"
|
|
|
|
- name: Configuring git email
|
|
community.general.git_config:
|
|
name: user.email
|
|
scope: global
|
|
value: "{{ git_email }}"
|