-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgitconfig
More file actions
24 lines (17 loc) · 632 Bytes
/
gitconfig
File metadata and controls
24 lines (17 loc) · 632 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# $KYAULabs: gitconfig,v 1.0.4 2023/06/07 11:36:41 kyau Exp $
[core]
editor = vim
[user]
email = kyau@kyau.net
name = Sean Bruen
signingkey = 1F125B5425110CCE
[alias]
ls = log --all --format=format:'%C(red)%h%C(reset)%C(bold) -%C(yellow)%d%C(reset) %s %C(green)(%ar)%C(reset) %C(cyan)[%an]%C(reset)' --graph
ll = log --all --format=format:'%C(red)%h%C(reset)%C(bold) -%C(yellow)%d%C(reset) %s %C(green)(%ar)%C(reset) %C(cyan)[%an]%C(reset)%n%b%C(reset)' --graph --numstat
[init]
defaultBranch = main
[commit]
gpgsign = true
[push]
followTags = true
# vim: ft=gitconfig sts=4 sw=4 ts=4 et :