2009-11-20 11:57:39 +01:00
|
|
|
[user]
|
2010-11-10 15:27:39 +01:00
|
|
|
name = Mathieu Maret
|
2011-04-18 16:36:24 +02:00
|
|
|
email = mathieu.maret@gmail.com
|
2009-11-20 11:57:39 +01:00
|
|
|
[color]
|
|
|
|
ui = auto
|
|
|
|
diff = auto
|
2010-11-10 15:27:39 +01:00
|
|
|
status = auto
|
2009-11-20 11:57:39 +01:00
|
|
|
branch = auto
|
2010-09-15 18:09:24 +02:00
|
|
|
[pack]
|
|
|
|
threads = 0
|
2009-11-20 11:57:39 +01:00
|
|
|
[alias]
|
2010-11-10 15:27:39 +01:00
|
|
|
st = status
|
|
|
|
ci = commit
|
2017-11-24 10:41:07 +01:00
|
|
|
cia = commit --amend
|
|
|
|
cias = commit --amend --no-edit
|
2010-11-10 15:27:39 +01:00
|
|
|
co = checkout
|
2012-05-30 14:26:03 +02:00
|
|
|
br = branch
|
|
|
|
df = diff
|
|
|
|
dc = diff --cached
|
2020-11-10 21:45:44 +01:00
|
|
|
# lg = log -p
|
2012-05-30 14:26:03 +02:00
|
|
|
lol = log --graph --decorate --pretty=oneline --abbrev-commit
|
|
|
|
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
|
2015-02-26 15:21:14 +01:00
|
|
|
lolp = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
|
2020-11-10 21:45:44 +01:00
|
|
|
lg = log -p --pretty=fuller --abbrev-commit
|
|
|
|
lgg = log --pretty=fuller --abbrev-commit --stat
|
2012-05-30 14:26:03 +02:00
|
|
|
ls = ls-files
|
2016-10-18 11:06:09 +02:00
|
|
|
dt = difftool # to have diff with meld
|
2014-07-30 14:08:20 +02:00
|
|
|
mylog = log --committer=\"$(git config user.name)\"
|
2016-10-18 11:06:09 +02:00
|
|
|
please = push --force-with-lease
|
2014-09-17 11:53:44 +02:00
|
|
|
# Remove last commit but keep changes
|
2016-10-18 11:06:09 +02:00
|
|
|
undo = reset --soft HEAD^
|
2014-09-17 11:53:44 +02:00
|
|
|
revertpart = reset -p HEAD^
|
|
|
|
diffword = diff --color-words=.
|
2016-10-18 11:06:09 +02:00
|
|
|
save = stash save -u
|
2016-11-08 11:39:36 +01:00
|
|
|
#rebase last N commits
|
|
|
|
rb = "!f() { git rebase -i HEAD~$1; }; f"
|
|
|
|
#rebase since branching on branch N
|
|
|
|
rbi = !sh -c \"git rebase -i `git merge-base $1 HEAD`\" -
|
|
|
|
cleanbr = remote prune origin
|
|
|
|
cleanbrshow = remote prune origin --dry-run
|
2020-03-17 21:13:59 +01:00
|
|
|
cleanupbr = "!git branch --merged | grep -v '\\*\\|master\\|develop\\|dev' | xargs -n 1 git branch -d"
|
|
|
|
cleanupbrprune = "!git fetch --prune"
|
2016-11-08 11:39:36 +01:00
|
|
|
contains = !sh -c 'git branch -a --contains $1' -
|
2017-11-24 10:41:07 +01:00
|
|
|
wdiff = diff --word-diff=color --unified=1
|
2018-01-22 11:30:59 +01:00
|
|
|
first = rev-list --max-parents=0 HEAD # or use log --reverse
|
2019-06-20 14:20:27 +02:00
|
|
|
rebasestash = rebase --autostash # stash before rebase if needed
|
|
|
|
#Gitlab checkout merge request. e.g. get MR 5 on remote upstream git mr upstream 5
|
|
|
|
mr = !sh -c 'git fetch $1 merge-requests/$2/head:mr-$1-$2 && git checkout mr-$1-$2' -
|
|
|
|
#Git reset upstream
|
|
|
|
ru = "!f() { \
|
|
|
|
REMOTES=$(git remote); \
|
|
|
|
REMOTE=\"origin\"; \
|
|
|
|
case \"$REMOTES\" in \
|
|
|
|
*upstream*) \
|
|
|
|
REMOTE=\"upstream\"; \
|
|
|
|
;; \
|
|
|
|
esac; \
|
|
|
|
git fetch $REMOTE; \
|
|
|
|
git update-ref refs/heads/master refs/remotes/$REMOTE/master; \
|
|
|
|
git checkout master >/dev/null 2>&1; \
|
|
|
|
git reset --hard $REMOTE/master >/dev/null 2>&1; \
|
|
|
|
git checkout - >/dev/null 2>&1; \
|
|
|
|
}; f"
|
2020-03-17 21:13:59 +01:00
|
|
|
code-changes = "!git log --format=format: --name-only | egrep -v '^$' | sort | uniq -c | sort -rg | head -10"
|
|
|
|
cc = "!git code-changes"
|
2020-06-24 23:23:19 +02:00
|
|
|
fixup = "commit --fixup"
|
|
|
|
ri = "rebase -i --autosquash"
|
2020-11-10 21:45:44 +01:00
|
|
|
up = pull --rebase
|
2016-10-18 11:06:09 +02:00
|
|
|
[branch]
|
|
|
|
#New branch track remote
|
2019-06-20 14:20:27 +02:00
|
|
|
#autosetupmerge = always
|
|
|
|
# Rebase on git pull
|
|
|
|
#autosetuprebase = always
|
|
|
|
|
|
|
|
# in .gitattributes
|
|
|
|
# *.doc diff=word
|
|
|
|
# *.xsl diff=excel
|
|
|
|
# *.xlsx diff=zip
|
|
|
|
# *.docx diff=wordx
|
|
|
|
# *.png diff=exif
|
|
|
|
|
2016-10-18 11:06:09 +02:00
|
|
|
[diff "odf"]
|
|
|
|
textconv=odt2txt
|
|
|
|
[diff "odt"]
|
|
|
|
textconv=odt2txt
|
2019-06-20 14:20:27 +02:00
|
|
|
[diff "pandoc"]
|
|
|
|
textconv=pandoc --to=markdown
|
|
|
|
prompt = false
|
|
|
|
[diff "wordx"]
|
|
|
|
textconv = docx2txt_wrap
|
|
|
|
[diff "word"]
|
|
|
|
textconv = catdoc
|
|
|
|
[diff "excel"]
|
|
|
|
textconv = strings
|
|
|
|
[diff "zip"]
|
|
|
|
textconv = unzip -c -a
|
|
|
|
[diff "exif"]
|
|
|
|
textconv = exiftool
|
2015-06-30 15:48:10 +02:00
|
|
|
[difftool "meld"]
|
|
|
|
path = /usr/bin/meld
|
|
|
|
trustExitCode = false
|
|
|
|
[difftool]
|
|
|
|
prompt = false
|
|
|
|
[diff]
|
|
|
|
tool = meld
|
2016-10-07 10:31:59 +02:00
|
|
|
compactionHeuristic = true
|
2015-06-30 15:48:10 +02:00
|
|
|
[mergetool "meld"]
|
|
|
|
path = /usr/bin/meld
|
|
|
|
trustExitCode = false
|
|
|
|
[mergetool]
|
2016-10-18 11:06:09 +02:00
|
|
|
# do not keep .ori file after a merge
|
2015-06-30 15:48:10 +02:00
|
|
|
keepBackup = false
|
|
|
|
[merge]
|
|
|
|
tool = meld
|
2016-10-18 11:06:09 +02:00
|
|
|
# tool = vimdiff
|
|
|
|
# conflictstyle = diff3
|
2013-02-25 17:16:30 +01:00
|
|
|
[push]
|
2020-03-17 21:13:59 +01:00
|
|
|
default = current #push to upstreal assuming same name for the upstream and current branch
|
|
|
|
#default = upstream # pushed to the configuer upstream branch
|
2013-12-13 11:37:40 +01:00
|
|
|
[credential]
|
|
|
|
helper = cache --timeout=3600
|
2014-03-07 11:22:09 +01:00
|
|
|
[sendemail]
|
|
|
|
from = Mathieu Maret <mathieu.maret@gmail.com>
|
|
|
|
smtpserver = smtp.gmail.com
|
|
|
|
smtpuser = mathieu.maret
|
|
|
|
smtpencryption = tls
|
|
|
|
smtpserverport = 587
|
|
|
|
# smtppass = PASS
|
2014-09-03 11:33:11 +02:00
|
|
|
[web]
|
|
|
|
browser = firefox
|
2015-02-26 15:21:14 +01:00
|
|
|
|
|
|
|
[rerere]
|
|
|
|
enabled = true
|
2016-10-07 10:31:59 +02:00
|
|
|
[pager]
|
|
|
|
log = /usr/share/git/diff-highlight/diff-highlight | less
|
|
|
|
show = /usr/share/git/diff-highlight/diff-highlight | less
|
|
|
|
diff = /usr/share/git/diff-highlight/diff-highlight | less
|
|
|
|
[interactive]
|
|
|
|
diffFilter = /usr/share/git/diff-highlight/diff-highlight
|
2020-06-24 23:23:19 +02:00
|
|
|
[filter "lfs"]
|
|
|
|
required = true
|
|
|
|
clean = git-lfs clean -- %f
|
|
|
|
smudge = git-lfs smudge -- %f
|
|
|
|
process = git-lfs filter-process
|
|
|
|
[pull]
|
2020-07-28 12:54:56 +02:00
|
|
|
#rebase = true
|
|
|
|
ff = only
|