0
0

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.

mac で踏み台経由で svnサーバー にチェックアウトする

Posted at

やること

踏み台経由で svnサーバー にチェックアウトする。
・ポートフォワードの設定を記述
・SnailSVN Lite: SVN for Finder を使ってチェックアウト

ポートフォワードの設定を記述

ターミナルから .ssh/config にポートフォワードの設定を記述する
以下コマンド

コマンド
$ vim ~/.ssh/config

ファイルに以下の設定を書く

~/.ssh/config
Host ポートフォワードの設定名(任意)
  HostName      踏み台IP
  User          ユーザー名
  Port          踏み台ポート
  IdentityFile  ~/.ssh/認証キー
  LocalForward  ポート名(任意) svnサーバーIP:svnサーバーポート
Host チェックアウト先に使う設定名(任意)
  HostName      localhost
  User          ユーザー名
  Port          ポート名(LocalForward)
  IdentityFile  ~/.ssh/認証キー

SnailSVN Lite: SVN for Finder を使ってチェックアウト

以下の url から SnailSVN をダウンロード
手順通りインストールする
しっかりインストールできるとファインダー右上に subversion のアイコンが出る
アイコンを押すとメニューが出てくる
スクリーンショット 2020-08-31 17.47.11.png

ターミナルを開いて以下のコマンドを使ってポートフォワードする。
ポートフォワードの設定名(任意)で設定した物を使う

コマンド
$ ssh -fN ポートフォワードの設定名

コマンドを叩いたら、ファインダーの subversion のメニューから SVN Checkout... を押下すると設定が開く。
スクリーンショット 2020-08-31 18.04.47.png

Repository の URL of repository には以下のように設定
svn+ssh://チェックアウト先に使う設定名(任意)/ソースを管理してるディレクトリ
Repository の Checkout directory にはソースを置くディレクトリ名

OKを押したらチェックアウトが始まります。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?