-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
48 lines (37 loc) · 1.09 KB
/
gitconfig
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
39
40
41
42
43
44
45
46
47
48
[user]
name = Evgeni "Eugene" Kirilov
email = [email protected]
[color]
# Enable colors in color-supporting terminals
ui = auto
[alias]
p = push
s = status
co = checkout
cl = clone
ammend = commit --amend
undo = reset --soft HEAD^ # Unstages the last commit while keeping its changes
l = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short
aliases = !git config --get-regexp alias | sed -re 's/alias\\.(\\S*)\\s(.*)$/\\1 = \\2/g'
[remote]
# pushDefault = lego
[rerere]
enabled = true
[hub]
host = git.enova.com
[core]
# autocrlf = true
# Use Sublime Text as the default text editor
editor = subl -n -w
# Don't consider trailing space change as a cause for merge conflicts
whitespace = -trailing-space
[diff]
# Show renames/moves as such
renames = true
[status]
# Display submodule rev change summaries in status
submoduleSummary = true
# Recursively traverse untracked directories to display all contents
showUntrackedFiles = all
[url "[email protected]:"]
insteadOf = https://github.com/