aboutsummaryrefslogtreecommitdiffstats
path: root/.gitconfig
diff options
context:
space:
mode:
authorMathias Bynens <mathias@qiwi.be>2012-02-14 18:06:55 +0100
committerMathias Bynens <mathias@qiwi.be>2012-02-14 18:07:11 +0100
commitc625c47054bc7f67557cdeddddb5397721cda2c2 (patch)
tree9e03169317b476647eeb5249f8d39ee90fd87661 /.gitconfig
parent10eed3c55b6ea71a8de2599396aeea5fd393f2f6 (diff)
downloaddotfiles-c625c47054bc7f67557cdeddddb5397721cda2c2.tar.gz
dotfiles-c625c47054bc7f67557cdeddddb5397721cda2c2.tar.bz2
dotfiles-c625c47054bc7f67557cdeddddb5397721cda2c2.zip
.gitconfig: Add comments
Diffstat (limited to '.gitconfig')
-rw-r--r--.gitconfig20
1 files changed, 17 insertions, 3 deletions
diff --git a/.gitconfig b/.gitconfig
index 8d7e03e..94cf3cc 100644
--- a/.gitconfig
+++ b/.gitconfig
@@ -1,15 +1,26 @@
[alias]
- l = log -p
- s = status
+ # View the SHA, description, and history graph of the latest 20 commits
+ l = log --pretty=oneline -n 20 --graph
+ # View the current working tree status using the short format
+ s = status -s
+ # Pull in remote changes for the current repository and all its submodules
p = !"git pull; git submodule foreach git pull origin master"
+ # Undo a `git push`
undopush = push -f origin HEAD^:master
+
[apply]
+ # Detect whitespace errors when applying a patch
whitespace = fix
+
[core]
+ # Use custom `.gitignore` and `.gitattributes`
excludesfile = ~/.gitignore
attributesfile = ~/.gitattributes
- whitespace = fix,space-before-tab,tab-in-indent,trailing-space
+ # Treat spaces before tabs, lines that are indented with 8 or more spaces, and all kinds of trailing whitespace as an error
+ whitespace = space-before-tab,indent-with-non-tab,trailing-space
+
[color]
+ # Use colors in Git commands that are capable of colored output when outputting to the terminal
ui = auto
[color "branch"]
current = yellow reverse
@@ -25,7 +36,10 @@
changed = green
untracked = cyan
[merge]
+ # Include summaries of merged commits in newly created merge commit messages
log = true
+
+# URL shorthands
[url "git@github.com:"]
insteadOf = "gh:"
pushInsteadOf = "github:"