Lazygit 애플리케이션은 사용이 간편하다고 생각되는 git 클라이언트입니다.
파일 이 있습니다 .gitconfig
:
[user]
email = [email protected]
name = Stephane Eybert
[alias]
ss = status
ap = add -p
co = checkout
unadd = reset
[core]
pager = delta
whitespace = cr-at-eol
editor = vim
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[merge]
conflictStyle = diff3
tool = meld
[push]
ff = only
[fetch]
prune = true
[diff]
color = true
tool = vimdiff
[color]
diff = auto
status = always
branch = auto
[delta]
side-by-side = true
line-numbers = true
navigate = true
light = true
그리고 파일이 있습니다 ~/.config/lazygit/config.yml
:
git:
showIcons: true
paging:
useConfig: true
하지만 이 구성은 무시되는 것 같습니다.