-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
38 lines (35 loc) · 735 Bytes
/
gitconfig
File metadata and controls
38 lines (35 loc) · 735 Bytes
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
[user]
email = i.itzcovich@gmail.com
name = Ivan Itzcovich
[alias]
co = checkout
cm = commit -m
master = checkout master
forgot = commit --amend -C HEAD
br = branch -av
brname = !git branch | grep "^*" | awk '{ print $2 }'
tags = tag -l
s = status
l = log --oneline
this = !git init && git add . && git commit -m \"Initial commit.\"
delete = branch -d
rename = commit --amend -m
[core]
editor = vim
[push]
default = simple
[color]
ui = true
[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 = red