--- # defaults file for git # The system username in /home where to place the gitconfig file. # git_username: johndoe # The group to own directories. # git_groupname: "{{ git_username }}" # Settings for git configuration. # git_user_email: johndoe@example.com # git_user_name: John Doe # Where to place the copies of the repositories. git_repository_destination: /home/{{ git_username | default('unset') }}/Documents/github.com/{{ git_username | default('unset') }} # Should git force (overwrite locally changed) clone? (Can also be controlled # per repository, see below. git_force: no # The repositories to check out, bootstrap is pinned to a version, java will get HEAD/latest. # git_repositories: # - repo: https://github.com/robertdebock/ansible-role-bootstrap.git # dest: bootstrap # version: 2.2.4 # - repo: ssh://git@github.com/robertdebock/ansible-role-java.git # dest: java # - repo: ssh://git@github.com/robertdebock/ansible-role-tomcat.git # dest: tomcat # force: yes