I agree with Brian, what are you trying to do that magit can't do via a simple key trigger? There's probably a key-binding for it already. If not I just C-z
to drop to shell and run the command, then type fg
to bring emacs back in foreground.
Edit: My flow goes like this.
- I start the day at work. I type
git diff
in command line just to see if I have any uncommitted changes from the previous day (don't forget to enabled colors!) The reason I do this in command line as apposed to magit is because I'm not in emacs yet.
- I either open the uncomitted files in emacs
emacs file1 file2
or I open some files I'm about to work on.
- I code until I've fixed a bug or finished a new feature.
- In emacs I type
C-c i
to open up the Magit status window.
- I scroll down to the Changes section and next to each file press tab to see a diff of each changes. I either press
s
to stage those changes or u
to unstage those changes.
- Optionally, I can look through diffs code and do the same
s
and u
to stage and unstage sections of the code. Useful if I had some debug code somewhere and want to kill it.
- After I've confirmed all my changes look good and are staged I type
c
to open the magit-edit-log. I type my commit message and then type C-c C-c
to commit it. Then P
to push it. Done!
Note that this sounds like a lot of steps but it becomes quickly natural and the whole process literally takes 30 seconds for me to diff my entire set of changes, stage them, and commit them with a message. All while staying in Emacs. So much easier than dropping down to command line.
Sometimes an error is returned when I do a push via Magit usually caused by new code in the remote repo that I have to pull before I push. In this case F
to pull changes then P
again to push. Honestly for some reason, instead of pulling through magit, I generally just Ctrl-z
in this situation, drop down to shell, git pull
, and git push
.
Edit: I think I remember Magit's default diff colors being pretty atrocious. I use the following in my .emacs I'm sure I stole from somewhere:
;; change magit diff colors
(eval-after-load 'magit
'(progn
(set-face-foreground 'magit-diff-add "green3")
(set-face-foreground 'magit-diff-del "red3")
(when (not window-system)
(set-face-background 'magit-item-highlight "black"))))
(add-to-list 'auto-mode-alist '("COMMIT_EDITMSG$" . diff-mode))
(eval-after-load 'diff-mode
'(progn
(set-face-foreground 'diff-added "green4")
(set-face-foreground 'diff-removed "red3")))