You've already forked ansible-role-git
Initial Commit
This commit is contained in:
14
templates/.config/git/config.j2
Normal file
14
templates/.config/git/config.j2
Normal file
@ -0,0 +1,14 @@
|
||||
#jinja2: lstrip_blocks: "True", trim_blocks: "True"
|
||||
#
|
||||
# {{ ansible_managed }}
|
||||
#
|
||||
|
||||
{% for section, values in item.value.config.items() %}
|
||||
[{{ section }}]
|
||||
{% for key, value in values.items() %}
|
||||
{% if value | length > 0 %}
|
||||
{{ key }} = {{ value }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
{% endfor %}
|
7
templates/.config/git/ignore.j2
Normal file
7
templates/.config/git/ignore.j2
Normal file
@ -0,0 +1,7 @@
|
||||
#
|
||||
# {{ ansible_managed }}
|
||||
#
|
||||
|
||||
**/*~ # emacs
|
||||
**/.DS_Store # mac os
|
||||
**/*.swp # vim swap
|
26
templates/.config/git/message.j2
Normal file
26
templates/.config/git/message.j2
Normal file
@ -0,0 +1,26 @@
|
||||
# [<optional state> #issueid] <type>: <summary>
|
||||
|
||||
# Addition description
|
||||
# - item
|
||||
# - item
|
||||
# - item
|
||||
|
||||
# optional states:
|
||||
# Close #issueid
|
||||
# Draft #issueid
|
||||
# WIP #issueid
|
||||
|
||||
# types:
|
||||
# feat (new feature)
|
||||
# fix (bug fix)
|
||||
# refactor (refactoring production code)
|
||||
# style (formatting, missing semicolons, etc; no code change)
|
||||
# docs (changes to documentation)
|
||||
# test (adding or refactoring tests; no production code change)
|
||||
# core (updating grunt tasks etc; no production code change)
|
||||
|
||||
# Examples:
|
||||
# [Close #1] fix: cleanup build folder # Smart-commit for github, gilab, gitea, gogs
|
||||
# [HATE-1337 /fixed] fix: cleanup build folder # Smart-commit for jira
|
||||
# style: ident to 2 blanks
|
||||
# feat: read from apache kafka channel
|
Reference in New Issue
Block a user