-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
28 lines (28 loc) · 758 Bytes
/
gitconfig
File metadata and controls
28 lines (28 loc) · 758 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
[user]
name = Martin Engelsøy Norum
email = martin.norum@gmail.com
[alias]
unstage = reset HEAD --
co = checkout
br = branch
ci = commit
s = status
l = log --pretty=format:\"%h %ad | %s%Cblue%d %Creset[%an]\" --graph --date=short
la = log --pretty=format:\"%h %ad | %s%Cblue%d %Creset[%an]\" --graph --date=short --all
ub = "!git fetch && git branch -f master origin/master && git merge --ff-only master"
# lg = log --oneline --decorate --graph
# lga = log --oneline --decorate --graph --all
a = add --interactive
unpushed = cherry -v
t = tag --sort=v:refname
[core]
editor = vim
excludesfile = ~/.gitignore
[credential]
helper = cache --timeout=3600
[push]
default = simple
[difftool]
prompt = false
[mergetool]
prompt = false