dotfiles/roles/git/tasks/configuration.yml

15 lines
289 B
YAML
Raw Normal View History

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