5
5

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 5 years have passed since last update.

svnリポジトリからgitリポジトリに移行する

Posted at
  • git-svnを使う
# SVNリポジトリをチェックアウト
git svn clone -s http://svn.example.com/existing_svn_repo existing_svn_repo

# 新しいGitリポジトリにプッシュ
cd existing_svn_repo
git remote add origin ssh://git@git.example.com:12345/new_git_repo.git
git push -u origin master

こんなんでいいのかな

5
5
1

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?