-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
46 lines (37 loc) · 1.34 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
[user]
name = Andrey Epifanov
email = [email protected]
[help]
autocorrect = 1
[color]
ui = true
[push]
default = simple
[core]
editor = vim
autocrlf = input
whitespace = trailing-space,space-before-tab
pager = less -FXRS -x4
excludesfile = /Users/aepifanov/.gitignore
[diff]
tool = vimdiff
[alias]
st = status
rs = reset --hard
lg = log --graph --decorate --pretty=oneline --abbrev-commit
l = log --graph --pretty=format:'%C(yellow)%h %C(blue bold)%d %Creset%s %C(red bold)%an %C(yellow)(%ar)'
co = checkout
br = branch
df = diff
dashboards-checkout = "!f() { git fetch origin refs/meta/dashboards/main:refs/meta/dashboards/main && git checkout -B meta/dashboards/main refs/meta/dashboards/main; }; f"
dashboards-review = "!f() { git push origin HEAD:refs/for/refs/meta/dashboards/main; }; f"
dash-co = dashboards-checkout
dash-review = dashboards-review
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /private/var/folders/93/7grdjywn7453clwvqft11jn80000gp/T/AppTranslocation/1D3A7A53-2499-4A9F-B08C-531266C14C42/d/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true
[credential "https://source.developers.google.com"]
helper = gcloud.sh