diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-02-04 10:24:10 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-02-04 10:24:10 +0000 |
commit | 3ee203ef0c2b9cc53bc00e1dd6d6e5dcf123de35 (patch) | |
tree | 871cdd7f5492f046bae70f787e907b45243fedb7 /config/configuration.yml.example | |
parent | c1ec8c5ea33f9b79bc230d5e3bd2d18c66071a7a (diff) | |
download | redmine-3ee203ef0c2b9cc53bc00e1dd6d6e5dcf123de35.tar.gz redmine-3ee203ef0c2b9cc53bc00e1dd6d6e5dcf123de35.zip |
scm: change key name of configurable command name (#7517, #6159, #7047).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4797 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/configuration.yml.example')
-rw-r--r-- | config/configuration.yml.example | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/configuration.yml.example b/config/configuration.yml.example index 7a74711c3..a1937959b 100644 --- a/config/configuration.yml.example +++ b/config/configuration.yml.example @@ -110,11 +110,11 @@ default: # 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. - scm_command_subversion: svn # (default: svn) - scm_command_mercurial: "\"C:\Program Files\TortoiseHg\hg.exe\"" # (default: hg) - scm_command_git: /usr/local/bin/git # (default: git) - scm_command_bazaar: bzr.exe # (default: bzr) - scm_command_darcs: darcs-1.0.9-i386-linux # (default: darcs) + scm_subversion_command: svn # (default: svn) + scm_mercurial_command: "\"C:\Program Files\TortoiseHg\hg.exe\"" # (default: hg) + scm_git_command: /usr/local/bin/git # (default: git) + scm_bazaar_command: bzr.exe # (default: bzr) + scm_darcs_command: darcs-1.0.9-i386-linux # (default: darcs) # specific configuration options for production environment # that overrides the default ones |