awesome magit workflow

Posted 1. March 2020 by Xing Wenju - 1 min read

Awesome magit workflow

https://magit.vc/screenshots/

(defhydra yt-hydra/help (:color blue :hint nil)
  "
_msa_ stage-modified _mp_ push #_mc_ commit #_md_ diff #_mla_ log all #_mla_ status
"
  ;;Magit part
  ("msa" magit-stage-modified)
  ("mp" magit-push)
  ("mc" magit-commit)
  ("md" magit-diff)
  ("mla" magit-log-all)
  ("ms" magit-status)
  )
(global-set-key (kbd "") 'yt-hydra/help/body)