Sha256: fa5ddc49d8d7c5b1fa69feea0b28a60d993598bb5e751a3de4330a460c9a1cd3
Contents?: true
Size: 513 Bytes
Versions: 14
Compression:
Stored size: 513 Bytes
Contents
--- # tasks file for qb/git/check/clean - name: > Get git status for repo {{ git_root }} shell: git status --porcelain 2>/dev/null args: chdir: "{{ git_root }}" register: git_check_clean_status changed_when: false - name: > Fail if the repo at {{ git_root }} has any untracked or modified files. fail: msg: > Repo at {{ git_root }} can not have any untracked or modified files, please commit or stash and retry. when: (git_check_clean_status.stdout_lines | length) != 0
Version data entries
14 entries across 14 versions & 1 rubygems