aboutsummaryrefslogtreecommitdiff
path: root/home/.gitconfig
blob: 686eef0941c3711da84f0616707ec6f64bffd44b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[user]
	name = Jakob Odersky
	email = jakob@odersky.com
	signingkey = 0x4601878662E33372
[color]
	ui = auto
[alias]
	s = status
	hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
	lg = log --oneline --decorate --all --graph
	pr = "!f() { git fetch ${2:-upstream} pull/$1/head:pr/$1; }; f"
[push]
	default = simple
[core]
	editor = emacsclient --alternate-editor='' --tty
	excludesfile = ~/.gitignore_global
[includeIf "gitdir:~/src/driver/"]
	path = .gitconfig_driver
[credential "https://git-wip-us.apache.org"]
	username = jodersky
	helper = "!f() { echo password=$(pass sites/apache.org); }; f"