15 lines
274 B
Plaintext
15 lines
274 B
Plaintext
[credential]
|
|
helper = store
|
|
[push]
|
|
autoSetupRemote = true
|
|
[core]
|
|
autocrlf = false
|
|
excludesfile = ~/.gitignore_global
|
|
[pull]
|
|
rebase = true
|
|
[alias]
|
|
undo = "!u() { \
|
|
NUM="${1:-1}"; \
|
|
git reset --soft HEAD~$1; \
|
|
};u"
|