master
1- name: git - email
2 git_config:
3 name: user.email
4 scope: global
5 value: "{{ git_email }}"
6 tags: git
7
8- name: git - username
9 git_config:
10 name: user.name
11 scope: global
12 value: "{{ git_username }}"
13 tags: git
14
15# should be a git_config task but that's a TODO I guess
16- name: git - use ssh over https
17 command: git config --global url."git@github.com:".insteadOf "https://github.com/"