git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/.gitconfig
blob: a830a7dbde11f66831217d0d9b2c24651bdcd957 (plain)
1
2
3
4
5
6
7
8
9
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #aaaaaa; font-style: italic } /* Comment */
.highlight .err { color: #FF0000; background-color: #FFAAAA } /* Error */
.highlight .k { color: #0000aa } /* Keyword */
.highlight .ch { color: #aaaaaa; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #4c8317 } /* Comment.Preproc */
.highlight .cpf { color: #aaaaaa; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */
.highlight .cs { color: #0000aa; font-style: italic } /* Comment.Special */
.highlight .gd { color: #aa0000 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #00aa00 } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #0000aa } /* Keyword.Constant */
.highlight .kd { color: #0000aa } /* Keyword.Declaration */
.highlight .kn { color: #0000aa } /* Keyword.Namespace */
.highlight .kp { color: #0000aa } /* Keyword.Pseudo */
.highlight .kr { color: #0000aa } /* Keyword.Reserved */
.highlight .kt { color: #00aaaa } /* Keyword.Type */
.highlight .m { color: #009999 } /* Literal.Number */
.highlight .s { color: #aa5500 } /* Literal.String */
.highlight .na { color: #1e90ff } /* Name.Attribute */
.highlight .nb { color: #00aaaa } /* Name.Builtin */
.highlight .nc { color: #00aa00; text-decoration: underline } /* Name.Class */
.highlight .no { color: #aa0000 } /* Name.Constant */
.highlight .nd { color: #888888 } /* Name.Decorator */
.highlight .ni { color: #880000; font-weight: bold } /* Name.Entity */
.highlight .nf { color: #00aa00 } /* Name.Function */
.highlight .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */
.highlight .nt { color: #1e90f
[color]
	diff	= auto
	status	= auto
	branch	= auto
	ui		= auto
# To determine user and GPG key ID, we source this file:
[include]
	path	= ~/.gitconfig.local
# ...with the following content:
## vim:syntax=gitconfig
#[user]
#	name		= John McDoe III
#	email		= mail_redacted_for_web
#	signingkey	= 1FEDBEEFC0DEDBAD
[log]
	date	= iso
[alias]
	st		= status
	lg		= log -p
	dc		= diff --cached
	lol		= log --graph --decorate --pretty=format:'%C(auto)%h %G? %d %s%Creset' --abbrev-commit
	lola	= log --graph --decorate --pretty=format:'%C(auto)%h %G? %d %s%Creset' --abbrev-commit --all
	lf		= log --graph --decorate --pretty=ln-long
	ls		= ls-files
	compactlog = log --pretty=format:"%h%x09%an%x09%ad%x09%s" --date=short
	# check out existing remote branch, e.g. origin/branchname
	cb		= checkout --track
	co		= checkout
	cob		= checkout -b
	c		= commit --verbose
	ca		= commit --verbose --all
	s		= status --short
	l		= log --color --graph --pretty=format:'%C(auto)%h %G? %d %s%Creset'
	gi		= init --bare
	gs		= init --bare --shared
	aa		= add --all --verbose
	ap		= add -p
	up		= pull --rebase=preserve
	fa		= fetch --all --verbose
	fap		= fetch --all --prune --verbose
	gr		= grep --break --heading --line-number
	d		= diff
	ds		= diff --stat
	dc		= diff --cached
	la		= "!git config -l|grep alias|cut -c 7-|sort|sed \"s/^\\([^=]\\+\\)=/\\1€/g\"|sed \"s|€/|@/|g;s|ts€|ts@|g;s|^la.*|la€<scrambled output, call git-alias>|g\"|column -ts€"
	alias	= "!git config -l|grep alias|cut -c 7-|sort"
	cs		= "!GPG_TTY=$(tty) git commit -S --verbose"
	csa		= "!GPG_TTY=$(tty) git commit -S --verbose --all"
	csp		= "!GPG_TTY=$(tty) git commit -S -pv"
	tag		= "!GPG_TTY=$(tty) git tag -s"
	tty		= "!export GPG_TTY=$(tty)"
	puv		= push --verbose
	puff	= "!git puv"
	pl		= pull -tpf
	p		= pull -tpf
	branchpull = remote update origin --prune
	branchremdel = push origin --delete
	ba		= branch --list --all
	smam	= submodule add -b master
	smir	= submodule update --init --recursive
	smu		= submodule foreach git pull
	bl		= branch --list
	br		= branch -r
	rhh		= reset --hard HEAD
	sl		= shortlog -s
	sls		= "!git shortlog -s | cut -f1 | spark"
	gl-mr		= "!sh -c 'git fetch $1 merge-requests/$2/head:mr-$1-$2 && git checkout mr-$1-$2' -"
	cps		= cherry-pick -S
[push]
	default	= simple
[pretty]
	ln-long = format:%C(auto)%H %gD %d %nAuthor:          %aN <%aE>%n%C(auto)GPG signature:   %G? %GF (%GT)%nGPG Primary Key: %GP%nDate:            %ad %nSubject:         %s %+b %+N %+(trailers)
[core]
	editor	= vim
	fileMode = true
[merge]
	tool	= vimdiff
[mergetool]
	keepBackup = false
[gui]
	fontui	= -family Hack -size 11 -weight normal -slant roman -underline 0 -overstrike 0
	fontdiff = -family Hack -size 11 -weight normal -slant roman -underline 0 -overstrike 0
[commit]
	gpgsign = false
#[gpg]
#	program	= /usr/bin/gpg2
[http]
	#proxy	= http://10.0.0.1:3128/
[pull]
	rebase = false
[pack]
	windowMemory = 1024m
[credential]
	helper = !type pass-git-helper > /dev/null && pass-git-helper $@
	useHttpPath = true