Subversion : インストール2022/09/27 |
バージョン管理システム Subversion のインストールと設定です。
|
|
[1] | Subversion をインストールします。 |
root@dlp:~# apt -y install subversion
|
[2] | 任意の一般ユーザーでリポジトリを作成可能です。 例として [/home/ubuntu/repos/project] を作成します。 |
ubuntu@dlp:~$
mkdir -p /home/ubuntu/repos/project ubuntu@dlp:~$ svnadmin create /home/ubuntu/repos/project
# [-m "***"] ⇒ 任意のロギングするメッセージを入力 ubuntu@dlp:~$ svn mkdir file:///home/ubuntu/repos/project/trunk -m "create" Committing transaction... Committed revision 1. ubuntu@dlp:~$ svn mkdir file:///home/ubuntu/repos/project/branches -m "create" Committing transaction... Committed revision 2. ubuntu@dlp:~$ svn mkdir file:///home/ubuntu/repos/project/tags -m "create" Committing transaction... Committed revision 3. |
[3] | 作成したリポジトリに、すでに別のディレクトリに作成している作業ファイルをインポートする場合は、以下のように実行します。 例として [/home/ubuntu/work] 配下にある作業ファイルを、作成したリポジトリの [trunk] へインポートします。 |
ubuntu@dlp:~$ ll ~/work total 24 drwxrwxr-x 2 ubuntu ubuntu 4096 Sep 27 00:25 ./ drwxr-xr-x 9 ubuntu ubuntu 4096 Sep 27 00:24 ../ -rw-r--r-- 1 ubuntu ubuntu 9 Sep 23 05:16 testfile1.txt -rw-r--r-- 1 ubuntu ubuntu 9 Sep 23 05:21 testfile2.txt -rwx------ 1 ubuntu ubuntu 9 Sep 27 00:25 testscript.py* -rwx------ 1 ubuntu ubuntu 9 Sep 27 00:25 testtool.sh*ubuntu@dlp:~$ svn import /home/ubuntu/work file:///home/ubuntu/repos/project/trunk -m "initial import" Adding work/testfile1.txt Adding work/testfile2.txt Adding work/testscript.py Adding work/testtool.sh Committing transaction... Committed revision 4. # 確認 # [list] サブコマンド は省略系 [ls] で代替可 ubuntu@dlp:~$ svn list file:///home/ubuntu/repos/project/trunk testfile1.txt testfile2.txt testscript.py testtool.sh |
[4] | リポジトリ内にすでに存在しているファイルを、自身の作業ディレクトリにコピーする場合は、以下のように実行します。 例として、リポジトリ [/home/ubuntu/repos/project/trunk] にあるファイルを、自身の作業ディレクトリ [/home/ubuntu/work2] へコピーします。 |
ubuntu@dlp:~$
mkdir ~/work2
# [checkout] サブコマンド は省略系 [co] で代替可 ubuntu@dlp:~$ svn checkout file:///home/ubuntu/repos/project/trunk /home/ubuntu/work2 A work2/testfile1.txt A work2/testfile2.txt A work2/testscript.py A work2/testtool.sh Checked out revision 4.ubuntu@dlp:~$ ll ~/work2 total 28 drwxrwxr-x 3 ubuntu ubuntu 4096 Sep 27 00:27 ./ drwxr-xr-x 9 ubuntu ubuntu 4096 Sep 27 00:27 ../ drwxrwxr-x 4 ubuntu ubuntu 4096 Sep 27 00:27 .svn/ -rw-rw-r-- 1 ubuntu ubuntu 9 Sep 27 00:27 testfile1.txt -rw-rw-r-- 1 ubuntu ubuntu 9 Sep 27 00:27 testfile2.txt -rwxrwxr-x 1 ubuntu ubuntu 9 Sep 27 00:27 testscript.py* -rwxrwxr-x 1 ubuntu ubuntu 9 Sep 27 00:27 testtool.sh* |
[5] | 自身の作業ディレクトリにあるファイルを更新し、リポジトリへ更新を反映する場合は、以下のように実行します。 例として、更新した [/home/ubuntu/work2/testtool.sh] を、リポジトリへ反映します。 |
ubuntu@dlp:~$
cd ./work2
# [commit] サブコマンド は省略系 [ci] で代替可 ubuntu@dlp:~/work2$ svn commit testtool.sh -m "update testtool.sh 2022092701" Sending testtool.sh Transmitting file data .done Committing transaction... Committed revision 5.ubuntu@dlp:~/work2$ svn info testtool.sh Path: testtool.sh Name: testtool.sh Working Copy Root Path: /home/ubuntu/work2 URL: file:///home/ubuntu/repos/project/trunk/testtool.sh Relative URL: ^/trunk/testtool.sh Repository Root: file:///home/ubuntu/repos/project Repository UUID: 6f0604e2-27f1-4972-b8de-658e70d64576 Revision: 5 Node Kind: file Schedule: normal Last Changed Author: ubuntu Last Changed Rev: 5 Last Changed Date: 2022-09-27 00:29:25 +0000 (Tue, 27 Sep 2022) Text Last Updated: 2022-09-27 00:29:15 +0000 (Tue, 27 Sep 2022) Checksum: d9b434823b0d2ccc981d6533a185aed0e98ca76d # ファイル単位ではなく全ファイルを [commit] する場合は以下 ubuntu@dlp:~/work2$ svn commit -m "update all 2022092701" |
[6] | 自身の作業ディレクトリに新規ファイルを作成し、それをリポジトリにも新規で反映する場合は、以下のように実行します。 例として、更新した [/home/ubuntu/work2/index.html] を、リポジトリへ反映します。 |
ubuntu@dlp:~/work2$ svn add index.html A index.htmlubuntu@dlp:~/work2$ svn commit index.html -m "add new index.html 2022092701" Adding index.html Transmitting file data .done Committing transaction... Committed revision 6.ubuntu@dlp:~/work2$ svn update ubuntu@dlp:~/work2$ svn list index.html testfile1.txt testfile2.txt testscript.py testtool.sh |
[7] | 複数人でリポジトリを共有して利用している場合に、他人が更新したリポジトリ上のファイルを、自身のワーキングディレクトリにマージする場合は以下のように実行します。 |
ubuntu@dlp:~/work2$ svn update Updating '.': U testfile.txt Updated to revision 12. |
Sponsored Link |