dotfiles/playbooks/roles/git/tasks/main.yml

9 lines
283 B
YAML

---
- name: Set up gitconfig
shell: git config --global user.name "{{user_name}}" && git config --global user.email {{user_email}}
args:
creates: ~/.gitconfig
- name: Add git pushall alias
shell: git config --global alias.pushall '!git remote | xargs -L1 git push --all'