-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
36 lines (36 loc) · 898 Bytes
/
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
[user]
name = Baylee Schmeisser
email = github.mx@baylee.dev
[core]
editor = vim
excludesfile = ~/.gitignore
autocrlf = input
[color]
ui = auto
[alias]
work = config user.email "bschmeisser@stytch.com"
cb = !git rev-parse --abbrev-ref head | pbcopy
wip = !git commit --no-verify -m \"wip\"
aa = add --all
ap = add --patch
ci = commit -v
ca = commit -v --amend
co = checkout
st = status
lg = log --stat --summary --show-signature
fixup = commit --fixup
squash = commit --squash
track = !git branch --set-upstream-to=origin/$(git rev-parse --abbrev-ref HEAD)
col = "!f() { if [ $# -eq 1 ]; then branch=$(linear-branch-decorator \"$1\"); git checkout -b \"$branch\"; else git checkout \"$@\"; fi; }; f"
[push]
default = current
[pull]
rebase = false
[fetch]
prune = true
[init]
defaultBranch = main
[pager]
branch = false
[rebase]
autosquash = true