9
10

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.

gitとsvnを両立させる魔法のコマンド

Posted at

こんな人にオススメ

  • 周りがsvnを使っていけど、自分はgitを試してみたいと思っている
  • gitを愛しているがsvnと付き合う事を強要されている

まずは準備

mkdir project
cd project
git svn clone --prefix svn/ -s svn://hostname/path

git pull (svn update)

git svn fetch
git svn rebase

git log (svn log)

git svn log

git commit

git commit # 普通にgit commitしてok

git push (svn commit)

git svn dcommit

まとめ

git svnコマンドを使えば自分はgit、周りはsvnで快適に開発できますよ。

9
10
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
9
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?