Last active
September 23, 2016 12:23
-
-
Save kimegede/32658d3d3fea07c290c1aa1aac3f9def to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Clone my-repo | |
git: | |
repo: "[email protected]:my-organization/my-repo.git" | |
dest: "{{ app_root }}" | |
update: yes | |
accept_hostkey: yes | |
force: no | |
version: master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Try without "update" | |
- name: Clone framework | |
git: | |
repo: "[email protected]:my-organization/my-repo.git" | |
dest: "{{ app_root }}" | |
accept_hostkey: yes | |
force: yes | |
version: master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment