File: gitconfig

package info (click to toggle)
hxtools 20251011-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,468 kB
  • sloc: ansic: 4,384; perl: 3,467; sh: 1,664; cpp: 353; makefile: 90
file content (58 lines) | stat: -rw-r--r-- 835 bytes parent folder | download
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
53
54
55
56
57
58
[core]
	pager = less -MRSXi

[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
	cp = cherry-pick
	dc = diff --cached
	la = log --oneline --graph --all
	lg = log --oneline
	lr = log --oneline --reverse --no-merges
	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

[init]
	defaultBranch = master