Last active
January 21, 2023 07:53
-
-
Save bells17/76c6f5e76bbc9e29250c9c8d2081b8f8 to your computer and use it in GitHub Desktop.
.gitconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = bells17 | |
email = [email protected] | |
[include] | |
path = .gitconfig.local | |
[commit] | |
gpgsign = true # gpg keyで署名していないなら外す | |
[init] | |
defaultBranch = main | |
[core] | |
editor = vi | |
[color] | |
ui = auto | |
[push] | |
default = current | |
[merge] | |
ff = false | |
[pull] | |
rebase = true | |
[alias] | |
st = status | |
co = checkout | |
di = diff | |
dic = diff --cached | |
lo = log --graph -n 20 --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(green)- %an, %cr%Creset' | |
lp = log --oneline -n 20 -p | |
ls = log --stat --abbrev-commit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment