Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
howtos:vcs_editor [2011/06/04 23:48] – Improve geany options used. codebrainzhowtos:vcs_editor [2011/06/05 00:04] – Use 'source' to have settings take effect immediately. codebrainz
Line 1: Line 1:
 ===== Using Geany as your VCS Editor ===== ===== Using Geany as your VCS Editor =====
 The following instructions and commands are to help you use Geany as the editor used with your [[http://en.wikipedia.org/wiki/Revision_control|Version Control System]] when writing commit messages. The following instructions and commands are to help you use Geany as the editor used with your [[http://en.wikipedia.org/wiki/Revision_control|Version Control System]] when writing commit messages.
 +
 +==== Bazaar ====
 +<code>
 +echo 'export BZR_EDITOR="geany -imnst"' >> ~/.bashrc
 +source ~/.bashrc
 +</code>
  
 ==== Git ==== ==== Git ====
 <code>git config --global core.editor "geany -imnst"</code> <code>git config --global core.editor "geany -imnst"</code>
- 
-==== Subversion ==== 
-<code>echo 'export SVN_EDITOR="geany -imnst"' >> ~/.bashrc</code> 
  
 ==== Mercurial ==== ==== Mercurial ====
-<code>echo 'export HGEDITOR="geany -imnst"' >> ~/.bashrc</code>+<code> 
 +echo 'export HGEDITOR="geany -imnst"' >> ~/.bashrc 
 +source ~/.bashrc 
 +</code> 
 + 
 +==== Subversion ==== 
 +<code> 
 +echo 'export SVN_EDITOR="geany -imnst"' >> ~/.bashrc 
 +source ~/.bashrc 
 +</code>
  
-{{tag>howto vcs git svn subversion mercurial hg}}+{{tag>howto vcs bazaar bzr git mercurial hg subversion svn}}
Print/export