You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
[diff] |
|
tool = vimdiff |
|
|
|
[difftool "vimdiff"] |
|
cmd = vimdiff \"$LOCAL\" \"$REMOTE\" |
|
|
|
[core] |
|
pager = less -FRX |
|
editor = vim |
|
[alias] |
|
glog = log --graph --decorate |
|
glogs = log --graph --stat |
|
ci = commit |
|
st = status |
|
sglog = log --oneline --decorate --graph --all |
|
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset %Cblue<%an>%Creset' --abbrev-commit --date=relative |
|
co = checkout |
|
out = log --branches --not --remotes |
|
inc = log ..@{u} |
|
vimdiff = difftool -y -t vimdiff |
|
serve = instaweb |
|
|
|
# tricks from https://www.durdn.com/blog/2012/11/22/must-have-git-aliases-advanced-examples/ |
|
# if no file is specified, show diff for all files in the changeset |
|
diffc = "!f() { git diff ${1}^1 ${1} -- $2; }; f" |
|
vimdiffc = "!f() { git vimdiff ${1}^1 ${1} -- $2; }; f" |
|
|
|
[user] |
|
name = Petr Nyc |
|
email = petr.nyc@oracle.com |
|
|
|
[merge] |
|
tool = vimdiff |
|
|
|
|
|
[instaweb] |
|
local = true |
|
; httpd = apache2 -f |
|
; port = 4321 |
|
; browser = konqueror |
|
; modulePath = /usr/lib/apache2/modules |
|
[init] |
|
defaultBranch = master
|
|
|