dotfiles/roles/git/tasks/configuration.yml
2024-10-01 09:17:39 +02:00

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 }}"