aliases 855 B

12345678910111213141516171819202122
  1. [pretty]
  2. short-timestamp = %C(bold blue)%h%C(magenta)% d%Creset%C(dim white)% an%Creset %C(green)(%ar)%n%C(yellow)%<(70,trunc)%aD%n
  3. timestamp = %C(bold blue)%h%C(magenta)% d%Creset%C(dim white)% an%Creset%C(green) (%ar)%Creset%C(yellow)%<(50,trunc)% aD%n%Creset%<(70,trunc)%s
  4. standup = %C(blue)* %C(bold green)%s%n%Creset%w(70,2,2)%b
  5. [alias]
  6. amend = commit --amend
  7. br = branch
  8. ch = checkout
  9. fa = fetch --all
  10. ff = pull --ff-only
  11. lg = log --graph --pretty=timestamp
  12. lga = !git lg --all
  13. nuke = !echo NUKING UNCOMMITTED CHANGES && git reset --hard && git clean -fd
  14. pf = push -f
  15. ri = rebase -i
  16. show-aliases = config --get-regexp 'alias.*'
  17. slg = log --all --graph --simplify-by-decoration --pretty=short-timestamp
  18. staged = diff --staged
  19. st = status
  20. standup = !git log --since yesterday --author $(git config user.email) --pretty=standup
  21. unstage = reset HEAD --