Guest User

Untitled

a guest
Oct 24th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. [core]
  2. excludesfile = C:/Users/X/.gitignore
  3. autocrlf = true
  4.  
  5. [alias]
  6. a = add
  7. aa = add .
  8. ap = add -p
  9.  
  10. # list aliases
  11. al = "!git config -l | grep alias | cut -c 7-"
  12.  
  13. b = branch
  14. # list branches sorted by last modified
  15. bl = "!git for-each-ref --sort='-authordate' --format='%(authordate)%09%(objectname:short)%09%(refname)' refs/heads | sed -e 's-refs/heads/--'"
  16.  
  17. c = commit --verbose
  18. ca = commit -a --verbose
  19. cm = commit -m
  20. cam = commit -a -m
  21. m = commit --amend --verbose
  22. ma = commit -a --amend --verbose
  23.  
  24. co = checkout
  25. cob = checkout -b
  26.  
  27. cp = cherry-pick
  28. cpa = cherry-pick --abort
  29. cpc = cherry-pick --continue
  30.  
  31. d = diff
  32. ds = diff --stat
  33. dc = diff --cached
  34.  
  35. fo = fetch origin
  36. fu = fetch upstream
  37.  
  38. fi = flow init
  39. fff = flow feature finish
  40. ffph = flow feature publish
  41. ffpl = flow feature pull
  42. ffs = flow feature start
  43. fhf = flow hotfix finish
  44. fhs = flow hotfix start
  45. frf = flow release finish
  46. frph = flow release publish
  47. frs = flow release start
  48. frt = flow release track
  49.  
  50. l = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short
  51.  
  52. pho = push origin
  53. phuo = push -u origin
  54. plo = pull origin
  55. plu = pull upstream
  56. plro = pull -r origin
  57. plru = pull -r upstream
  58.  
  59. ri = rebase -i
  60. ra = rebase --abort
  61. rc = rebase --continue
  62. rs = rebase --skip
  63.  
  64. rao = remote add origin
  65. rau = remote add upstream
  66. rro = remote remove origin
  67. rru = remote remove upstream
  68.  
  69. rh = reset HEAD
  70. rhh = reset --hard HEAD
  71.  
  72. s = status -s
  73.  
  74. sa = stash apply
  75. sk = stash --keep-index
  76. sl = stash list
  77. sp = stash pop
  78. ss = stash save
  79. ssm = stash push -m
  80.  
  81. hide = update-index --assume-unchanged
  82. show = update-index --no-assume-unchanged
  83.  
  84. [merge]
  85. tool = kdiff3
  86. [mergetool "kdiff3"]
  87. path = C:/Program Files/KDiff3/kdiff3.exe
  88. trustExitCode = false
  89. keepBackup = false
  90.  
  91. [diff]
  92. guitool = kdiff3
  93. [difftool "kdiff3"]
  94. path = C:/Program Files/KDiff3/kdiff3.exe
  95. trustExitCode = false
  96.  
  97. [gui]
  98. encoding = utf-8
  99. tabsize = 4
  100. [push]
  101. followTags = true
Add Comment
Please, Sign In to add comment