.gitconfig from zorgati and gpg_tty in xinitrc
This commit is contained in:
parent
1f4bb9233d
commit
d371d213e0
|
@ -69,6 +69,8 @@ export SSH_AUTH_SOCK="${XDG_RUNTIME_DIR}"/ssh-agent.socket
|
|||
# export SSH_ASKPASS='/usr/bin/sudo-askpass'
|
||||
# export SSH_ASKPASS_REQUIRE='prefer'
|
||||
export GIT_CONFIG_GLOBAL="${HOME}"/.gitconfig
|
||||
# shellcheck disable=SC2155
|
||||
export GPG_TTY="$(tty)"
|
||||
|
||||
export USER42='tischmid'
|
||||
export EMAIL42='timo42@proton.me'
|
||||
|
|
11
.gitconfig
11
.gitconfig
|
@ -1,17 +1,28 @@
|
|||
[user]
|
||||
name = tosu
|
||||
email = timo42@proton.me
|
||||
signingkey = C00746F2E0F36492!
|
||||
[init]
|
||||
defaultBranch = main
|
||||
[color]
|
||||
ui = true
|
||||
[filter "lfs"]
|
||||
process = git-lfs filter-process
|
||||
required = true
|
||||
clean = git-lfs clean -- %f
|
||||
smudge = git-lfs smudge -- %f
|
||||
[merge]
|
||||
conflictsstyle = diff3
|
||||
[core]
|
||||
autocrlf = input
|
||||
[alias]
|
||||
l = log
|
||||
s = status
|
||||
a = add
|
||||
ci = commit
|
||||
d = diff
|
||||
tree = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit
|
||||
[gpg]
|
||||
program = gpg
|
||||
[commit]
|
||||
gpgsign = true
|
||||
|
|
Loading…
Reference in New Issue