aboutsummaryrefslogblamecommitdiff
path: root/git/gitconfig
blob: 5fbe38c47b91d1ea753e03b3d891219500620463 (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                                                                             

                                           

                                                                                    


                       
       
                                                 
 
       
             
 





                  
      
                       

                     


                
      
                      


                
#
# The user section is intentionally left undefined here, because the name and
# email I want to use for commits varies between contexts and machines (most
# notably when I'm on a work machine). I therefore use an un-versioned script
# in ~/.profile.d to do this that looks something like the following:
#
#     GIT_AUTHOR_NAME='Tom Ryder'
#     GIT_AUTHOR_EMAIL='tom@sanctum.geek.nz'
#     GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
#     GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
#     export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL
#
[advice]
    statusHints = false

[alias]
    others = ls-files --others --exclude-standard

[color]
    ui = true

[diff]
    tool = vimdiff

[difftool]
    prompt = false

[grep]
    extendRegexp = true
    lineNumber = true

[log]
    date = local

[push]
    default = matching

[status]
    short = true