diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-16 00:10:35 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-16 00:10:35 +0000 |
commit | 4ee0ccda2ecb24432f95fbc607754f6e14aa5b19 (patch) | |
tree | 73702d1c338e3cbf41ca67afc44dc1b3f4a0778c /config/configuration.yml.example | |
parent | dedb29485de319e545c2e3f4e3d839c55b8956d2 (diff) | |
download | redmine-4ee0ccda2ecb24432f95fbc607754f6e14aa5b19.tar.gz redmine-4ee0ccda2ecb24432f95fbc607754f6e14aa5b19.zip |
scm: add comment that configuration of SCM executable command does not work if contains spaces path to configuration.yml.example (#7517, #8825).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6447 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/configuration.yml.example')
-rw-r--r-- | config/configuration.yml.example | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/config/configuration.yml.example b/config/configuration.yml.example index ab9a7ddf8..63c02d293 100644 --- a/config/configuration.yml.example +++ b/config/configuration.yml.example @@ -108,8 +108,15 @@ default: autologin_cookie_secure: # Configuration of SCM executable command. + # # Absolute path (e.g. /usr/local/bin/hg) or command name (e.g. hg.exe, bzr.exe) - # On Windows, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work. + # On Windows + CRuby, *.cmd, *.bat (e.g. hg.cmd, bzr.bat) does not work. + # + # On Windows + JRuby 1.6.2, path which contains spaces does not work. + # For example, "C:\Program Files\TortoiseHg\hg.exe". + # If you want to this feature, you need to install to the path which does not contains spaces. + # For example, "C:\TortoiseHg\hg.exe". + # # Examples: # scm_subversion_command: svn # (default: svn) # scm_mercurial_command: C:\Program Files\TortoiseHg\hg.exe # (default: hg) @@ -117,6 +124,7 @@ default: # scm_cvs_command: cvs # (default: cvs) # scm_bazaar_command: bzr.exe # (default: bzr) # scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs) + # scm_subversion_command: scm_mercurial_command: scm_git_command: |