This is an old revision of the document!
Table of Contents
Using Geany as your VCS Editor
The following instructions and commands are to help you use Geany as the editor used with your Version Control System when writing commit messages.
Bazaar
echo 'export BZR_EDITOR="geany -imnst"' >> ~/.bashrc source ~/.bashrc
Git
git config --global core.editor "geany -imnst"
Mercurial
echo 'export HGEDITOR="geany -imnst"' >> ~/.bashrc source ~/.bashrc
Subversion
echo 'export SVN_EDITOR="geany -imnst"' >> ~/.bashrc source ~/.bashrc