Git
Last modified by David De La Harpe Golden on 2018/07/28 18:17
Git is presently my preferred VCS and DVCS.
The Git Book
A /.gitconfig
Nothing very exciting, just noting some little things - enabling color, simple push/pull, disallowing non-ff pulls by default, using emacs to edit commit messages.
[user]
name = <name>
email = <email>
[color]
diff = auto
status = auto
branch = auto
[core]
editor = emacsclient -a=\"\"
[push]
default = simple
[pull]
default = simple
ff = only