Debian 12 bookworm
Sponsored Link

Git : Git-SVN を利用する2023/07/25

 
サーバー側が Subversion リポジトリを使用している場合に、クライアント側で Git-SVN をインストールすると、Subversion リポジトリに対して Git のワーキングリポジトリを作成して利用することができます。
[1] クライアント側で Git-SVN をインストールしておきます。
root@node01:~#
apt -y install git-svn
[2] 当例では Subversion サーバー側で [svnserve] が稼働中であることを前提に進めます。(必須ではない)
また Subversion サーバー [dlp.srv.world] 上の [/var/svn/repos/project] リポジトリに対して操作します。
bookworm@node01:~$
mkdir work

bookworm@node01:~$
cd work
# [git svn ***] で SVN リポジトリからクローン

bookworm@node01:~/work$
git svn clone --username debian svn://dlp.srv.world/repos/project

hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint:   git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint:   git branch -m <name>
Initialized empty Git repository in /home/bookworm/work/project/.git/
Authentication realm: <svn://dlp.srv.world:3690> b50b764f-187b-4b0c-a1fe-56b95ca230cd
Password for 'debian':
W: +empty_dir: trunk
r1 = 245779583201736a017677bfb18ca21934f7d61f (refs/remotes/git-svn)
W: +empty_dir: branches
r2 = 586d61e353ce0e0393b8f237314a26100d01ac49 (refs/remotes/git-svn)
W: +empty_dir: tags
r3 = 39da1b509612aeb32022e8561bb0dc0d4ad2690b (refs/remotes/git-svn)
        A       trunk/index.html
r4 = bb798f58dbb9484617c351e5ee4edf4d25bef2d8 (refs/remotes/git-svn)
Checked out HEAD:
  svn://dlp.srv.world/repos/project r4
creating empty directory: branches
creating empty directory: tags

bookworm@node01:~/work$
total 4
drwxr-xr-x 6 bookworm bookworm 4096 Jul 24 21:28 project

bookworm@node01:~/work$
cd project/trunk

bookworm@node01:~/work/project/trunk$
total 4
-rw-r--r-- 1 bookworm bookworm 11 Jul 24 21:28 index.html

# 適当にファイルを更新して 更新したファイルを [commit]

bookworm@node01:~/work/project/trunk$
echo "test file" >> index.html

bookworm@node01:~/work/project/trunk$
git commit index.html -m "update"

[master c397319] update
 1 file changed, 1 insertion(+)

# 更新を [push] する場合は [dcommit]

bookworm@node01:~/work/project/trunk$
git svn dcommit

Committing to svn://dlp.srv.world/repos/project ...
        M       trunk/index.html
Committed r5
        M       trunk/index.html
r5 = 9b4a45d5b16ff49761458a6756e618863572ee06 (refs/remotes/git-svn)
No changes between c3973193f212ba821a98123a45969dace25c33b6 and refs/remotes/git-svn
Resetting to the latest refs/remotes/git-svn

# 他人が更新したファイルを自身のローカルディレクトリにマージする場合は [rebase]

bookworm@node01:~/work/project/trunk$
git svn rebase

        M       trunk/index.html
r7 = 5409bba49db298910223e7dcb8dafcad0932e3b6 (refs/remotes/git-svn)
Successfully rebased and updated refs/heads/master.
関連コンテンツ