-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
29 lines (29 loc) · 831 Bytes
/
gitconfig
File metadata and controls
29 lines (29 loc) · 831 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
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
# name = François TAMBOISE
# email = funnyfrancois@gmail.com
[user]
name = Francois TAMBOISE
email = funnyfrancois@gmail.com
[core]
excludesfile = ~/.gitignore
editor = vim
[alias]
st = status
ci = commit
co = checkout
us = reset HEAD
rv = checkout HEAD --
df = diff
dc = diff --cached
kf = difftool -y
kc = difftool -y --cached
lol = log --graph --decorate --pretty=oneline --abbrev-commit
last = !git --no-pager log -1 HEAD
lg = log --oneline --graph
head = !git --no-pager show -s --pretty='tformat:%h (%s, %ad)' --date=short
[branch]
autosetuprebase = always
[push]
default = upstream