4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

svn のタイムアウト時間(http-timeout)を指定してもなぜか反映されない症状

Posted at

概要

環境

  • windows 10
  • svn version 1.14.1
  • TortoiseSVN 1.14.1, Build 29085

症状

デフォルトだとSVNは1時間でタイムアウトしてしまう。
現在のプロジェクトだと足りないので時間を伸ばすことにする。

  • 右クリックメニュー
  • → TortoiseSVN
  • → 設定
  • → 「全般」タブ
  • → 「Subversionの設定ファイル」の「編集」
  • → 開いたテキストに追加
[global]
http-timeout = 36000

36,000秒(10時間)に変更するも1時間でタイムアウトしてしまう。

解決法

Subversionの設定ファイルがあるフォルダを開く。
デフォルトだとここ。
C:\Users\username\AppData\Roaming\Subversion

serversファイルを開いて、設定を記入。

[global]
http-timeout = 36000

ちゃんと反映された!

4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?