LoginSignup
3
4

More than 5 years have passed since last update.

svnブランチの内容をtrunkにマージ

Last updated at Posted at 2014-11-19

参考: http://cockatiel-cage.hateblo.jp/entry/2012/12/14/122449

ブランチで以下を実行し、起点となるリビジョンを確認

$ svn log --stop-on-copy

trunk に切り替え

$ svn switch svn://host/trunk

merge(試行)

$ svn merge --dry-run -r xxx:HEAD svn://host/branches/branch_a 

merge(本番)

$ svn merge -r xxx:HEAD svn://host/branches/branch_a 

コミット

$ svn commit
3
4
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
3
4