13 lines
315 B
YAML
13 lines
315 B
YAML
---
|
|
- name: Clone git-summary
|
|
git:
|
|
repo: https://gitlab.com/lordadamson/git-summary.git
|
|
dest: ~/.git_clones/git-summary
|
|
clone: true
|
|
update: false
|
|
|
|
- name: Symlink git-summary
|
|
ansible.builtin.file:
|
|
src: ~/.git_clones/git-summary/git-summary
|
|
path: ~/.local/bin/git-summary
|
|
state: link
|