Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. [color]
  2. ui = true
  3. [core]
  4. editor = nano
  5. excludesfile = ~/.gitignore
  6. [alias]
  7. aliases = config --get-regexp alias
  8. a = add
  9. br = branch
  10. ca = commit -v -a
  11. cam = commit --amend
  12. ci = commit
  13. co = checkout
  14. cp = cherry-pick
  15. d = diff
  16. dc = diff --cached
  17. dm = diff master
  18. f = fetch
  19. fix = commit --amend -C HEAD
  20. lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
  21. m = merge --no-ff
  22. mf = merge --ff-only
  23. p = push
  24. pl = pull
  25. r = reset
  26. rb = rebase
  27. rba = rebase --abort
  28. rbc = rebase --continue
  29. rbi = rebase --ignore
  30. ss = stash
  31. sa = stash apply
  32. sp = stash pop
  33. st = status
  34. un = reset HEAD
  35. wdiff = diff --word-diff
  36. hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
  37. lgsort = for-each-ref --sort=committerdate refs/heads/ --format='%(committerdate:short) %(refname:short)'
  38. [help]
  39. autocorrect = 1
  40. format = web
  41. [branch]
  42. autosetupmerge = true
  43. [user]
  44. name = NAME
  45. email = EMAIL
  46. [log]
  47. date = rfc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement