File: gitconfig

package info (click to toggle)
hxtools 20201116-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,696 kB
  • sloc: ansic: 5,074; perl: 3,589; cpp: 2,152; sh: 1,610; asm: 173; makefile: 153
file content (52 lines) | stat: -rw-r--r-- 710 bytes parent folder | download | duplicates (2)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[core]
	pager = less -FMRSXi

[color]
	status = auto
	branch = auto
	diff = auto

[color "branch"]
	current = bold white

[color "diff"]
	commit = bold white blue
	frag = magenta
	meta = bold white blue

[color "decorate"]
	branch = bold green
	remotebranch = bold magenta
	tag = bold yellow
	stash = bold blue
	HEAD = bold cyan

[alias]
	ac = commit --amend
	br = branch
	ci = commit
	co = checkout
	dc = diff --cached
	lg = log --oneline
	rc = rebase --continue
	re = rebase
	st = status
	up = remote update -p

[push]
	default = current

[sendemail]
	chainreplyto = 0
	suppressfrom = 1
	suppresscc = all
	thread = 1

[grep]
	patternType = perl

[merge]
	conflictstyle = diff3

[diff]
	algorithm = histogram