]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - gitconfig.m4
gitconfig: Add --abbrev-commit to tig alias.
[config/dotfiles.git] / gitconfig.m4
index 439f7808977f5864c0beb026fa27115b6faf0bd4..2ecbc64abd46e81409a03a0807e3638277762818 100644 (file)
@@ -107,17 +107,28 @@ include(../lib.m4)
        sl  = stash list
        ss  = stash save
        sa  = stash apply
+       sp  = stash pop
        ssk = stash save --keep-index
 
        ## Custom commands.
        #
        # tig-like log view.
-       glog = log --pretty=oneline --graph --all
+       tig = log --pretty=oneline --graph --all --decorate --abbrev-commit
 
 [diff]
        # Detect copies and renames.
        renames = copy
 
+       # Change the definition of a word as used by diff --color-words to be
+       # shorter (not only spaces) and thus simplify the generated diffs.
+       # Words ([a-zA-Z0-9_]+) are matched, or a single non-word character
+       # ([^a-zA-Z0-9_]), therefore changes to words are shown in complete
+       # (e.g. from "word" to "newword" as "[-word-]{+newword+}"), but
+       # changes to non-word characters are shown character wise (e.g. from
+       # "==" to "!=" as "[-=-]{+!+}="); [-..-] is removal, {+..+} is
+       # addition. See t/ for some tests and examples.
+       wordregex = [a-zA-Z0-9_]+|[^a-zA-Z0-9_]
+
 # Allow diffing of some binary files.
 # `pdftotext-` is a wrapper around pdftotext which writes to stdout.
 # `sqlite3dump` is a wrapper calling `sqlite3 database-file .dump`.