Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. [include]
  2. path = .gituser
  3.  
  4. [core]
  5. editor = vim
  6. trustctime = false
  7. ; whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
  8. ; PreloadIndex = true
  9. ; fsyncobjectfiles = true
  10. ; autocrlf = false
  11.  
  12. [merge]
  13. tool = meld
  14.  
  15. [diff]
  16. tool = meld
  17.  
  18. [alias]
  19. st = status -b -s
  20. ci = commit
  21.  
  22. br = branch -avvv
  23. co = checkout
  24.  
  25. rt = remote -av
  26.  
  27. lg = log --graph --decorate --pretty=oneline --abbrev-commit
  28. la = log --graph --decorate --pretty=oneline --abbrev-commit --all
  29.  
  30. aa = add --all
  31. au = add --update
  32.  
  33. rh = reset --hard HEAD
  34.  
  35. puff = pull --ff
  36. pure = pull --rebase
  37. nuke = clean -ffdx
  38.  
  39. fixup = !sh -c 'git commit -m \"fixup! $(git log -1 --format='\\''%s'\\'' $@)\"' -
  40. squash = !sh -c 'git commit -m \"squash! $(git log -1 --format='\\''%s'\\'' $@)\"' -
  41.  
  42. pcb = !sh -c 'git checkout $(git branch | pick)'
  43. create-pull-request = !sh -c 'stash pull-request $0 $@'
  44.  
  45. [color "diff"]
  46. whitespace = red reverse
  47.  
  48. [color]
  49. ui = auto
  50. diff = auto
  51. status = auto
  52. branch = auto
  53.  
  54. [daemon]
  55. receivepack = true
  56.  
  57. [push]
  58. default = current
  59. [wojtek@arch-vm ~]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement