> When I perform a commit, BBEdit opens as expected. But whatever I type
> in is not piping back to git--when I close the file git replies in the
> shell: "aborting commit due to empty commit message."
git wants the editor tool to wait stay running until you are done
editing the file (which is what command line editors do.)
By default, `bbedit` exits immediately.
You want to add --wait (tool will wait for you to finish editing/close
the document before existing) and optionally --resume (pop the
terminal back to the front when finished.)
$ git config --global core.editor "bbedit --wait --resume"
Jim
Well, you need some flags there. I'd start with... oh, lemme
think.... try
bbedit -w --resume
or maybe just
bbedit -w
both should work, it's simply a matter of which one behaves the way
you want it to.
--
Advance and attack! Attack and destroy! Destroy and rejoice!