.gitconfig
author Oleksandr Gavenko <gavenkoa@gmail.com>
Thu, 21 Jun 2018 17:28:29 +0300
changeset 899 d5f00e3d31ec
parent 898 6ac59832aba5
child 906 00b35243abf4
permissions -rw-r--r--
Disable CYGWIN=noglob for docker-machine. See https://github.com/docker/machine/issues/4516

# -*- mode: conf -*-

[user]
name = Oleksandr Gavenko
email = gavenkoa@gmail.com

[alias]
br = branch
ci = commit
co = checkout
cp = cherry-pick
graph = log --graph --oneline --decorate
info = config --list
pop = !git stash apply && git stash clear
sb = show-branch
st = status
staged = diff --cached
summary = log --oneline
tags = tag -n1 -l
w = whatchanged
glog = log --graph --exclude=refs/heads/*.stgit --exclude=refs/patches/* --exclude=refs/stash --all

[core]
whitespace=-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore
autocrlf = input
safecrlf = warn
eol = lf
filemode = false

[apply]
# fix/strip/nowarn
# whitespace = strip

[color]
pager = true
ui = auto

[diff]
# Makes the diff much shorter when moving or copying files.
renames = copy

# The number of files to consider when performing the copy/rename
# detection; equivalent to the git diff option -l.
# renamelimit = 0

[merge]
conflictstyle = diff3

[log]
date = iso
follow = true

[push]
# Push only current brunch.
default = simple