Label with Git to make it clearer in the Ansible logs
This commit is contained in:
parent
625ec055e4
commit
f7f3285ac0
1 changed files with 15 additions and 15 deletions
|
@ -1,75 +1,75 @@
|
||||||
---
|
---
|
||||||
- name: pull.rebase
|
- name: Git pull.rebase
|
||||||
git_config:
|
git_config:
|
||||||
name: pull.rebase
|
name: pull.rebase
|
||||||
value: 'true'
|
value: 'true'
|
||||||
scope: global
|
scope: global
|
||||||
- name: push.default
|
- name: Git push.default
|
||||||
git_config:
|
git_config:
|
||||||
name: push.default
|
name: push.default
|
||||||
value: simple
|
value: simple
|
||||||
scope: global
|
scope: global
|
||||||
- name: color.ui
|
- name: Git color.ui
|
||||||
git_config:
|
git_config:
|
||||||
name: color.ui
|
name: color.ui
|
||||||
value: auto
|
value: auto
|
||||||
scope: global
|
scope: global
|
||||||
- name: credential.helper
|
- name: Git credential.helper
|
||||||
git_config:
|
git_config:
|
||||||
name: credential.helper
|
name: credential.helper
|
||||||
value: store
|
value: store
|
||||||
scope: global
|
scope: global
|
||||||
- name: gui.encoding
|
- name: Git gui.encoding
|
||||||
git_config:
|
git_config:
|
||||||
name: gui.encoding
|
name: gui.encoding
|
||||||
value: utf-8
|
value: utf-8
|
||||||
scope: global
|
scope: global
|
||||||
- name: guitool.Rebase.cmd
|
- name: Git guitool.Rebase.cmd
|
||||||
git_config:
|
git_config:
|
||||||
name: guitool.Rebase.cmd
|
name: guitool.Rebase.cmd
|
||||||
value: rebase
|
value: rebase
|
||||||
scope: global
|
scope: global
|
||||||
- name: user.name
|
- name: Git user.name
|
||||||
git_config:
|
git_config:
|
||||||
name: user.name
|
name: user.name
|
||||||
value: Anthony Perkins
|
value: Anthony Perkins
|
||||||
scope: global
|
scope: global
|
||||||
- name: alias.ci
|
- name: Git alias.ci
|
||||||
git_config:
|
git_config:
|
||||||
name: alias.ci
|
name: alias.ci
|
||||||
value: commit
|
value: commit
|
||||||
scope: global
|
scope: global
|
||||||
- name: alias.co
|
- name: Git alias.co
|
||||||
git_config:
|
git_config:
|
||||||
name: alias.co
|
name: alias.co
|
||||||
value: checkout
|
value: checkout
|
||||||
scope: global
|
scope: global
|
||||||
- name: alias.ff
|
- name: Git alias.ff
|
||||||
git_config:
|
git_config:
|
||||||
name: alias.ff
|
name: alias.ff
|
||||||
value: merge --ff-only
|
value: merge --ff-only
|
||||||
scope: global
|
scope: global
|
||||||
- name: alias.graph
|
- name: Git alias.graph
|
||||||
git_config:
|
git_config:
|
||||||
name: alias.graph
|
name: alias.graph
|
||||||
value: log --graph --oneline --all
|
value: log --graph --oneline --all
|
||||||
scope: global
|
scope: global
|
||||||
- name: alias.l1
|
- name: Git alias.l1
|
||||||
git_config:
|
git_config:
|
||||||
name: alias.l1
|
name: alias.l1
|
||||||
value: log --pretty=oneline
|
value: log --pretty=oneline
|
||||||
scope: global
|
scope: global
|
||||||
- name: alias.last
|
- name: Git alias.last
|
||||||
git_config:
|
git_config:
|
||||||
name: alias.last
|
name: alias.last
|
||||||
value: log -1 HEAD --pretty=fuller
|
value: log -1 HEAD --pretty=fuller
|
||||||
scope: global
|
scope: global
|
||||||
- name: alias.unstage
|
- name: Git alias.unstage
|
||||||
git_config:
|
git_config:
|
||||||
name: alias.unstage
|
name: alias.unstage
|
||||||
value: reset HEAD --
|
value: reset HEAD --
|
||||||
scope: global
|
scope: global
|
||||||
- name: alias.up
|
- name: Git alias.up
|
||||||
git_config:
|
git_config:
|
||||||
name: alias.up
|
name: alias.up
|
||||||
value: pull --rebase
|
value: pull --rebase
|
||||||
|
|
Loading…
Reference in a new issue