-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy path.gitconfig
More file actions
38 lines (29 loc) · 759 Bytes
/
.gitconfig
File metadata and controls
38 lines (29 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
##
## To activate this configuration (recommended), add the following include
## section to your .git/config file (without the # characters).
##
## [include]
## path = ../.gitconfig
##
##
## Set a better diff hunk header filter that ignores function comments.
##
[diff "cpp"]
xfuncname = "!^[ \t]*[A-Za-z_][A-Za-z_0-9]*:[[:space:]]*($|/[/*])\n!:$\n^((::[[:space:]]*)?[A-Za-z_].*)$"
[grep]
linenumber = true
##
## Always rebase when pulling, since we don't like merge commits.
##
[pull]
rebase = true
##
## Show the nice stat graph when doing git pull, which now defaults to rebase.
##
[rebase]
stat = true
##
## Set up windiff as a guitool. To activate this, set diff.guitool to windiff.
##
[difftool "windiff"]
cmd = windiff $LOCAL $REMOTE