Wiki source code of Git

Last modified by David De La Harpe Golden on 2018/07/28 18:17

Show last authors
1 Git is presently my preferred VCS and DVCS.
2
3 == The Git Book ==
4
5 https://git-scm.com/doc
6
7 == A /.gitconfig ==
8
9 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.
10
11 {{code}}
12
13 [user]
14 name = <name>
15 email = <email>
16 [color]
17 diff = auto
18 status = auto
19 branch = auto
20 [core]
21 editor = emacsclient -a=\"\"
22 [push]
23 default = simple
24 [pull]
25 default = simple
26 ff = only
27
28 {{/code}}