]> git.phdru.name Git - dotfiles.git/commitdiff
.gitconfig: add aliases
authorOleg Broytman <phd@phdru.name>
Tue, 23 Feb 2016 23:03:43 +0000 (02:03 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 23 Feb 2016 23:03:43 +0000 (02:03 +0300)
branches, null-merge, remotes, ri, tags

.gitconfig

index 598af7be712d6828a716ab612e6cf2cf2c106bdd..38d9c5c93eaa567bf3ea74cc6c00ac4c8b98e073 100644 (file)
@@ -1,5 +1,6 @@
 [alias]
        b = branch
+       branches = branch -a
        camend = commit --amend -C HEAD
        checkin = commit
        ci = commit
        lr = log --decorate --reverse
        lr1 = log --decorate --reverse --oneline
        lr5 = log --decorate --reverse -5
+       null-merge = merge --strategy=ours
+       remotes = remote -v
+       ri = "!sh -c 'git rebase --interactive --autosquash --preserve-merges ${1:-\"@{u}\"}' -"
        root = rev-parse --show-toplevel
        #root = !pwd
        st = status --short
        stb = status --short --branch
+       tags = tag -l
        unstage = reset HEAD --
        wdiff = diff --word-diff
        wshow = show --word-diff --decorate