dotfiles/roles/git/tasks/install/archlinux.yml

10 lines
153 B
YAML

---
# git on Archlinux
- name: (arch) installing git
community.general.pacman:
name: git
state: present
update_cache: true
become: true