.gitconfig 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. [user]
  2. name = liuyuqi-dellpc
  3. email = liuyuqi.gov@msn.cn
  4. [credential]
  5. helper = wincred
  6. [gui]
  7. encoding = utf-8
  8. pruneduringfetch = true
  9. [diff]
  10. tool = vsdiffmerge
  11. [difftool]
  12. prompt = true
  13. [difftool "vsdiffmerge"]
  14. cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\Common7\\IDE\\vsdiffmerge.exe\" \"$LOCAL\" \"$REMOTE\" //t
  15. keepbackup = false
  16. [commit]
  17. gpgSign = false
  18. [smartgit "submodule"]
  19. fetchalways = false
  20. update = true
  21. initializenew = true
  22. [push]
  23. recurseSubmodules = check
  24. [core]
  25. quotepath = false
  26. editor = code --wait
  27. ignorecase = false
  28. autocrlf = true
  29. excludesfile = C:\\Users\\liuyuqi\\Documents\\gitignore_global.txt
  30. [alias]
  31. st = status
  32. co = checkout
  33. br = branch
  34. mg = merge
  35. ci = commit
  36. md = commit --amend
  37. dt = difftool
  38. mt = mergetool
  39. last = log -1 HEAD
  40. cf = config
  41. line = log --oneline
  42. latest = for-each-ref --sort=-committerdate --format='%(committerdate:short) %(refname:short) [%(committername)]'
  43. ls = log -n 20 --pretty=format:\"%C(yellow)%h %C(blue)%ad %C(red)%d %C(reset)%s %C(green)[%cn]\" --decorate --date=short
  44. hist = log --pretty=format:\"%C(yellow)%h %C(red)%d %C(reset)%s %C(green)[%an] %C(blue)%ad\" --topo-order --graph --date=short
  45. type = cat-file -t
  46. dump = cat-file -p
  47. [gc]
  48. autoDetach = false
  49. [includeIf "gitdir:E:/data/workspace/"]
  50. path=~/.ssh/.gitconfig-self
  51. [includeIf "gitdir:D:/liuyuqi/zhizhou/"]
  52. path=~/.ssh/.gitconfig-zhizhou
  53. [includeIf "gitdir:D:/liuyuqi/Developer/aifen.org/"]
  54. path=~/.ssh/.gitconfig-aifen
  55. [includeIf "gitdir:D:/liuyuqi/Developer/miniapp/wxapp/"]
  56. path=~/.ssh/.gitconfig-ministar
  57. [includeIf "gitdir:E:/data/workspace/chinagreenfinance/"]
  58. path=~/.ssh/.gitconfig-greenfinance
  59. [includeIf "gitdir:D:/liuyuqi/coding/sift/"]
  60. path=~/.ssh/.gitconfig-coding-sift
  61. [includeIf "gitdir:D:/liuyuqi/coding/heavyrain/"]
  62. path=~/.ssh/.gitconfig-coding-heavyrain
  63. [includeIf "gitdir:F:/workspace/"]
  64. path=~/.ssh/.gitconfig-android
  65. [http]
  66. postBuffer = 524288000
  67. [i18n "commit"]
  68. encoding = utf-8
  69. [i18n]
  70. commitEncoding = utf-8
  71. logOutputEncoding = utf-8
  72. [https]
  73. sslVerify = false
  74. proxy = socks5://127.0.0.1:1080
  75. [http]
  76. sslVerify = false
  77. proxy = socks5://127.0.0.1:1080
  78. [difftool "sourcetree"]
  79. cmd = '' \"$LOCAL\" \"$REMOTE\"
  80. [mergetool "sourcetree"]
  81. cmd = "'' "
  82. trustExitCode = true
  83. [init]
  84. defaultBranch = master