gitconfig linking

This commit is contained in:
Anthony Cicchetti 2020-04-21 10:20:19 -04:00
parent 8cb956be45
commit 56a7ed56c6

View file

@ -1,9 +1,7 @@
--- ---
- name: Set up gitconfig - name: Link gitconfig
shell: git config --global user.name "{{user_name}}" && git config --global user.email {{user_email}} file:
args: src: ~/.dotfiles/git/gitconfig
creates: ~/.gitconfig dest: ~/.gitconfig
state: link
- name: Add git pushall alias
shell: git config --global alias.pushall '!git remote | xargs -L1 git push --all'