Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. [alias]
  2. c = commit
  3. ca = commit --amend
  4. chp = cherry-pick
  5. co = checkout
  6. df = diff --word-diff
  7. lg = log --oneline
  8. prb = pull --rebase
  9. st = status -s
  10. br = "!git branch --color | tee"
  11. hist = log --pretty=format:'%C(auto,green)%h%C(auto,reset) %ad → %s%d %C(auto,yellow)[%an]' --graph --date=short --decorate
  12. prb = pull --rebase
  13. stl = "!git -c color.status=always status -s | less -r"
  14. stu = status -s -uno
  15. lol = log --graph --decorate --pretty=format:'%C(auto)%h %C(green)%aN%Creset %C(blue)%ad%Creset %s' --abbrev-commit --all --date=format:'%d/%m/%y'
  16.  
  17. [push]
  18. default = simple
  19.  
  20. [filter "lfs"]
  21. clean = git-lfs clean -- %f
  22. smudge = git-lfs smudge -- %f
  23. required = true
  24. process = git-lfs filter-process
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement