-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
36 lines (31 loc) · 960 Bytes
/
gitconfig
File metadata and controls
36 lines (31 loc) · 960 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
[user]
name = teloe
email = tomeloe1@gmail.com
[core]
editor = "nvim"
[github]
user = teloe
[alias]
s = status
aa = add -A
c = commit
cm = commit -m
po = push origin
pod = push origin dev
plop = pull origin production
plod = pull origin dev
br = branch
co = checkout
cob = checkout -b
cl = clone
unstage = reset HEAD --
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
lp = log --pretty=oneline
ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
last = log -1 HEAD
whichfiles = diff-tree --no-commit-id --name-only -r
[init]
defaultBranch = main
[http]
postBuffer = 524288000