mirror of
https://github.com/stevenproctor/dotfiles.git
synced 2026-01-28 11:49:55 -06:00
33 lines
642 B
INI
33 lines
642 B
INI
# This is Git's per-user configuration file.
|
|
[user]
|
|
email = steven.proctor@gmail.com
|
|
name = Proctor
|
|
|
|
[core]
|
|
editor = nvim
|
|
excludesFile = ~/.gitignore.global
|
|
[init]
|
|
defaultBranch = main
|
|
|
|
[alias] ; Command aliases for the git[1] command wrapper
|
|
last = cat-file commit HEAD
|
|
[branch]
|
|
autoSetupRebase = always
|
|
[checkout]
|
|
defaultRemote = origin
|
|
[merge]
|
|
ff = only
|
|
[push]
|
|
autoSetupRemote = true
|
|
default = upstream
|
|
[rerere]
|
|
enabled = true
|
|
[remote]
|
|
pushDefault = origin
|
|
|
|
;; This is last, take in any other local file overrides
|
|
[include]
|
|
path = ~/.gitconfig.local ; find ".gitconfig.local" in your `$HOME` directory
|
|
[pull]
|
|
ff = only
|