Я использую 64-битную систему под управлением Windows 7. У меня установлены Open VPN и Tortoise SVN 64-bit.
Хранилище находится в удаленной системе, и мы подключаемся с помощью VPN.
Я выполнил необходимые шаги для инициации VPN-подключения -
- Добавлены некоторые специфичные для проекта файлы конфигурации в папке config пути установки Open VPN.
- Инициировано открытое VPN-соединение с использованием пользователя.
- запустил Pageant.exe Putty и добавил необходимую парольную фразу.
Все хорошо до здесь.
Затем я пошел в локальный каталог и попытался извлечь URL-адрес удаленного хранилища, используя Tortoise SVN. Но это выдает следующую ошибку -
Ошибка проверки
To better debug SSH connection problems, remove the -q option from 'ssh' in the [tunnels] section of your Subversion configuration file.
Network connection closed unexpectedly
Ниже приведено содержимое раздела [tunnels] моего конфигурационного файла Subversion -
### Section for configuring tunnel agents.
[tunnels]
### Configure svn protocol tunnel schemes here. By default, only
### the 'ssh' scheme is defined. You can define other schemes to
### be used with 'svn+scheme://hostname/path' URLs. A scheme
### definition is simply a command, optionally prefixed by an
### environment variable name which can override the command if it
### is defined. The command (or environment variable) may contain
### arguments, using standard shell quoting for arguments with
### spaces. The command will be invoked as:
### <command> <hostname> svnserve -t
### (If the URL includes a username, then the hostname will be
### passed to the tunnel agent as <user>@<hostname>.) If the
### built-in ssh scheme were not predefined, it could be defined
### as:
# ssh = $SVN_SSH ssh
### If you wanted to define a new 'rsh' scheme, to be used with
### 'svn+rsh:' URLs, you could do so as follows:
# rsh = rsh
### Or, if you wanted to specify a full path and arguments:
# rsh = /path/to/rsh -l myusername
### On Windows, if you are specifying a full path to a command,
### use a forward slash (/) or a paired backslash (\\) as the
### path separator. A single backslash will be treated as an
### escape for the following character.
Этот раздел упоминается в ошибке? Я не вижу никакой опции -q
там. Что нужно сделать сейчас.