git
This commit is contained in:
parent
49a6a688f4
commit
14fe002d31
1 changed files with 41 additions and 0 deletions
41
.gitconfig
Normal file
41
.gitconfig
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
[user]
|
||||||
|
name = Rodolphe Breard
|
||||||
|
email = rodolphe@what.tf
|
||||||
|
|
||||||
|
[core]
|
||||||
|
editor = emacs
|
||||||
|
|
||||||
|
[push]
|
||||||
|
default = simple
|
||||||
|
|
||||||
|
[alias]
|
||||||
|
co = checkout
|
||||||
|
df = diff
|
||||||
|
br = branch
|
||||||
|
ci = commit
|
||||||
|
st = status
|
||||||
|
unstage = reset HEAD --
|
||||||
|
last = log -1 HEAD
|
||||||
|
undo = reset --soft HEAD^
|
||||||
|
amend = commit --amend
|
||||||
|
|
||||||
|
[color]
|
||||||
|
branch = auto
|
||||||
|
diff = auto
|
||||||
|
status = auto
|
||||||
|
|
||||||
|
[color "branch"]
|
||||||
|
current = yellow reverse
|
||||||
|
local = yellow
|
||||||
|
remote = green
|
||||||
|
|
||||||
|
[color "diff"]
|
||||||
|
meta = yellow bold
|
||||||
|
frag = magenta bold
|
||||||
|
old = red bold
|
||||||
|
new = green bold
|
||||||
|
|
||||||
|
[color "status"]
|
||||||
|
added = yellow
|
||||||
|
changed = green
|
||||||
|
untracked = cyan
|
Loading…
Reference in a new issue