dotfiles/.gitconfig

25 lines
475 B
INI
Raw Normal View History

2020-09-15 03:55:18 +00:00
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = Jay
2021-01-16 03:06:20 +00:00
email = jay@lawsnote.com
[merge]
tool = vimdiff
2020-09-15 03:55:18 +00:00
[diff]
2021-01-16 03:06:20 +00:00
tool = vimdiff
trustExitCode = true
2020-09-15 03:55:18 +00:00
[difftool]
2021-01-16 03:06:20 +00:00
prompt = false
2020-09-15 03:55:18 +00:00
[alias]
2021-01-16 03:06:20 +00:00
d = difftool
co = checkout
2021-05-13 03:18:54 +00:00
ci = commit -v
2021-01-16 03:06:20 +00:00
l = log --oneline --graph --all
ls = log --graph --pretty=format:\"%h <%an> %ar %s\" --all
st = status
br = branch
[mergetool]
keepBackup = false
2021-01-16 03:14:32 +00:00
[core]
editor = vim