This commit is contained in:
Bart Sjerps
2026-07-08 13:01:00 +02:00
parent 092e607fe6
commit bc1e21e647
2 changed files with 19 additions and 0 deletions
+8
View File
@@ -47,6 +47,14 @@
group: root
mode: '0644'
- name: Deploy gitconfig
template:
src: templates/gitconfig
dest: /etc/gitconfig
owner: root
group: root
mode: '0644'
- name: Root password
user:
name: root
+11
View File
@@ -0,0 +1,11 @@
[alias]
co = checkout
ci = commit
st = status
br = branch
type = cat-file -t
dump = cat-file -p
hist = log -n 25 --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
histall = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
sh = !git remote -v && git br -a --color=never && git stash list && git status && git hist