]> git.phdru.name Git - dotfiles.git/commitdiff
.gitconfig: update aliases
authorOleg Broytman <phd@phdru.name>
Sat, 25 Jun 2016 21:13:42 +0000 (00:13 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 26 Jun 2016 03:01:23 +0000 (06:01 +0300)
.gitconfig

index ff92fb06382c86a52c51f65fd4c5dec44a0f00b8..5f69a00a4645c172a6d7b5404a98d6c3c05a182f 100644 (file)
        alias-local = "!git add-alias --local"
        local-alias = "!git add-alias --local"
        aliases = !git config --get-regexp 'alias.*' | colrm 1 6 | sed 's/[ ]/ = /'
-       b = branch
        branches = branch --all
+       ca = commit --all
+       cv = commit --verbose
+       cav = commit --all --verbose
+       cane = commit --amend --no-edit
+       checkin = commit
        cat = cat-file -p
        dump = cat-file -p
        file = cat-file -t
        type = cat-file -t
-       camend = commit --amend --no-edit
-       checkin = commit
-       ci = commit
-       co = checkout
-       d = diff
-       dc = diff --cached
-       dshow = show --decorate
        incoming = !git remote update --prune; git log ..@{upstream}
-       l = log --decorate
        l1 = log --decorate --oneline
        l5 = log --decorate -5
+       ld = log --decorate
        lg = log --decorate --graph
        lg1 = log --decorate --graph --oneline
        lg5 = log --decorate --graph -5
        null-merge = merge --strategy=ours
        outgoing = log @{upstream}..
        push2all = !git remote | xargs -I% -n1 git push %
+       rbi123 = "!f() { git rebase --interactive $1 $2 ${3:-\"@{upstream\\}\"}; }; f"
+       rbi = !git rbi123 '' ''
+       rbia = !git rbi123 --autosquash ''
+       rbiap = !git rbi123 --autosquash --preserve-merges
+       rbip = !git rbi123 '' --preserve-merges
        remotes = remote -v
-       ri = "!f() { git rebase --interactive --autosquash --preserve-merges ${1:-\"@{upstream\\}\"}; }; f"
        #root = !pwd
        root = rev-parse --show-toplevel
        st = status --short
        stb = status --short --branch
-       tags = tag --list
+       sd = show --decorate
+       sw = show --word-diff --decorate
        unstage = reset HEAD --
-       wdiff = diff --word-diff
-       wshow = show --word-diff --decorate
 
 [branch]
        autosetuprebase = always