Emacs: Add git-chore command
Alan Pearce alan@alanpearce.eu
Thu, 21 Jun 2018 11:29:21 +0200
1 files changed, 5 insertions(+), 0 deletions(-)
jump to
M emacs/.emacs.d/main.el → emacs/.emacs.d/main.el
@@ -537,6 +537,11 @@ (interactive "sfeature: ") (projectile-with-default-dir (projectile-project-root) (call-process-shell-command (concat "git feature " feature)))) + (defun git-chore (chore) + (interactive "schore: ") + (projectile-with-default-dir (projectile-project-root) + (call-process-shell-command (concat "git chore " chore)))) + (defun open-pull-request () (interactive) (async-shell-command "git pull-request"))