Guest User

Untitled

a guest
Jul 20th, 2018
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. [user]
  2. name = Example Example
  3. email = example@example.org
  4. signkey = examplekey
  5. [github]
  6. user = example
  7. [gpg]
  8. program = gpg
  9. [core]
  10. autocrlf = input
  11. whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
  12. excludesfile = ~/.gitignore
  13. [branch]
  14. autosetupmerge = true
  15. [push]
  16. default = simple
  17. [fetch]
  18. prune = true
  19. [commit]
  20. gpgsign = false
  21. [help]
  22. autocorrect = 5
  23. [color]
  24. ui = auto
  25. [color "branch"]
  26. current = yellow reverse
  27. local = yellow
  28. remote = green
  29. [color "diff"]
  30. meta = cyan dim
  31. frag = magenta bold
  32. old = red dim
  33. new = green dim
  34. whitespace = red reverse
  35. [color "status"]
  36. added = yellow
  37. changed = green
  38. untracked = cyan
  39. [alias]
  40. st = status
  41. ci = commit -a
  42. br = branch
  43. co = checkout
  44. ds = diff --staged
  45. unstage = reset HEAD
  46. uncommit = reset --soft HEAD^
  47. olog = log --oneline
  48. diffp = diff --color --patience
  49. diffi = diff --color --color-words --abbrev --ignore-all-space
  50. diffw = diff --color --color-words --abbrev
  51. diffwp = diff --color --color-words --abbrev --patience
  52. diffn = diff --color --name-status
  53. lp = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit -p
  54. lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --name-status
  55. l = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
  56. unpushed = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --branches --not --remotes
  57. sync = "remote update origin --prune"
  58. pl = "merge --ff-only @{u}"
Add Comment
Please, Sign In to add comment