]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
gitconfig: Use ## for section headers in [alias].
authorSimon Ruderich <simon@ruderich.org>
Sun, 14 Oct 2012 19:33:13 +0000 (21:33 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sun, 14 Oct 2012 19:33:13 +0000 (21:33 +0200)
A single # is used for normal comments.

gitconfig.m4

index 5e082916128fabf8f1d563e16feb7a457c0586b9..8502645baee8dadf6747e41e8123839a5456bfd9 100644 (file)
@@ -51,9 +51,9 @@ include(../lib.m4)
        tag = yes
 
 [alias]
-       # Shortcuts for often used commands.
+       ## Shortcuts for often used commands.
        #
-       # Local.
+       ## Local.
        c   = commit --verbose
        ci  = commit --verbose
        d   = diff PATIENCE
@@ -69,33 +69,34 @@ include(../lib.m4)
        a   = add
        ap  = add --patch
        au  = add --update
-       # Branches.
+       ## Branches.
        co  = checkout
        b   = branch -a -v
        br  = branch -a -v
        m   = merge
        me  = merge
        mo  = merge origin/master
-       # Remote.
+       ## Remote.
        f   = fetch
        fe  = fetch
        t   = tag
        p   = push
        pu  = push
        ru  = remote update
-       # Patches.
+       ## Patches.
        fp  = format-patch
-       # Maintenance. (Redirection of stderr is necessary to prevent missing
-       # output with my "color stderr" solution in Zsh.)
+       ## Maintenance.
+       # (Redirection of stderr is necessary to prevent missing output with
+       # my "color stderr" solution in Zsh.)
        fs  = ! git fsck --strict --full 2>&1
        fg  = ! git fs && git gc --aggressive 2>&1 # fsck and compress repo
-       # Misc.
+       ## Misc.
        sl  = stash list
        ss  = stash save
        sa  = stash apply
        ssk = stash save --keep-index
 
-       # Custom commands.
+       ## Custom commands.
        #
        # tig-like log view.
        glog = log --pretty=oneline --graph --all