GitMigrationRequest
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
* 2013-10-07: 要望があったリポジトリの移行完了 [#eb87fa04]
&color(#ff0000){2013-10-07: 期限までに要望があったリポジ...
* 2013-10-09: 要望が無かったリポジトリについて [#x3c9bf5b]
基本的に既存リポジトリのままで移行しました。Subversion と...
この処理で移行された GitHub のリポジトリページには、下記...
&color(#ff0000){(This repository was migrated from SVN au...
移行されたリポジトリの内容に問題がないようであれば、上記...
後日、やっぱり要望して移行し直して欲しい場合は[[Committer...
移行に使用した設定ファイルは下記にあります。
- [[移行に使用した設定ファイル一覧>https://github.com/sea...
* プロジェクト単位: Git リポジトリレイアウトの移行要望[#t...
&color(#ff0000){GitHub アカウントの登録は[[こちら!>GitMi...
Git リポジトリレイアウトの移行要望ページです。Subversion ...
この内容に関して質問や足りない内容があれば、[[Seasar Comm...
#contents
* 移行作業要望 [#w69cf770]
&color(#ff0000){要望期限: %%2013-09-30(月)%%}; まだ間に合...
移行作業を要望をされた場合、2013-10-07 (予定) 以降の移行...
移行期間中に記入していただいた内容は、随時テストリポジト...
** フォーマット [#k0d79bf8]
下記のフォーマットで記載してください。
このフォーマットで表現しきれない、こういう風にしたいけど...
3, 4 のフォーマットを指定していただいた場合は、変換スクリ...
- [[変換スクリプト>https://github.com/seasarorg/server-ut...
*** 1. プロジェクトコミッタ本人が自分で移行するフォーマッ...
自分で移行する場合のフォーマットは次のとおりです。
committer-name: あなたの Seasar.org のアカウント名 (http...
自分で移行します。
この場合、現在のコミッタ情報に応じてプロジェクトのチーム...
&color(#000,#bdf){他のプロジェクトのリポジトリと混同しな...
*** 2. 移行作業者に任せる要望フォーマット [#s2c88a14]
移行作業者にすべてを任せる場合のフォーマットは次のとおり...
どのような移行結果でも良い、もしくは、どのように移行する...
committer-name: あなたの Seasar.org のアカウント名 (http...
おまかせ
テストリポジトリを作成しますので必ずその内容で良いか確認...
おまかせにした場合、[[シンプルな例>#format-simple]]をベー...
*** 3. 典型的な要望フォーマット [#t9553f2f]
典型的な要望フォーマットは次のとおりです。'^trunk/www' は...
committer-name: yourname
name: projectname
svnroot: https://www.seasar.org/svn/projectname/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
この指定は次の内容になります。
- 最小フォーマットによる移行結果
-- GitHub に projectname という名前のリポジトリを作成しま...
-- SVN の移行元は https://www.seasar.org/svn/projectname/...
-- SVN の trunk が Git の master になります。
-- SVN の branches が Git の branches になります。
-- SVN の tags が Git の branches になります。
-- SVN へコミットしたすべてのファイルを Git へ移行します...
-- Git へ移行時にコミットログに自動的に付与される SVN の...
--- コミットID の例: git-svn-id: https://www.seasar.org/s...
-- SVN に空のコミットメッセージがあった場合、そのまま移行...
-- SVN に設定されていた svn:ignore の内容を .gitignore フ...
-- SVN 特有の tags のスタイルを Git に適した tags のスタ...
-- 変更点がない空のコミットがあった場合にそのコミットを取...
*** 4. すべてのオプションを指定したフォーマット [#ka9e4ca2]
すべてのオプションを指定したフォーマットです。移行準備期...
committer-name: yourname
name: projectname
svnroot: https://www.seasar.org/svn/projectname/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
option.remove-git-svn-id: 1
option.replace-empty-commit-messages: 1
option.replace-empty-commit-messages.string: '<empty com...
option.migrate-branches: name-1.x,name-2.x
option.migrate-tags: 1.0,1.1,2.0
option.no-convert-ignore-file: 1
option.no-convert-empty-directory: 1
option.no-convert-git-style-tag: 1
option.no-prune-empty: 1
option.no-migrate-branches: 1
option.no-migrate-tags: 1
各項目の意味は次の「フォーマットに指定できる設定一覧」の...
** フォーマットに指定できる設定一覧 [#s91bee3a]
フォーマットに指定できる設定は下記のとおりです。
,項目名,意味,必須項目,デフォルト値
,committer-name,[[あなたの Seasar.org のアカウント名>http...
,name,GitHub に作成する希望リポジトリ名,Y,
,svnroot,Git に移行する SVN のルートディレクトリ,Y,
,trunk,Git の master ブランチ(SVN における trunk)にする s...
,tags,Git の tag にする svnroot からみた tags があるパス...
,branches,Git の branches にする svnroot からみた branche...
,ignore-paths,移行時に除外したいファイルの正規表現を指定...
,option.remove-git-svn-id,移行時にコミットログに付与され...
,option.replace-empty-commit-messages,空のコミットメッセ...
,option.replace-empty-commit-messages.string,空のコミット...
,option.migrate-branches,指定した branch のみを移行したい...
,option.migrate-tags,指定した tags のみを移行したい場合に...
,option.no-convert-ignore-file,svn:ignore から .gitignore...
,option.no-convert-empty-directory,空のディレクトリに .gi...
,option.no-convert-git-style-tag,SVN 特有の tags のスタイ...
,option.no-prune-empty,変更点がない空のコミットを取り除き...
,option.no-migrate-branches,branches を移行しない(push し...
,option.no-migrate-tags,tags を移行しない(push しない)場...
** 要望記入例と実行例 [#k4821270]
要望記入例と実行例です。
*** シンプルな例 [#format-simple]
この例は最もシンプルな例です。
- ソース用リポジトリ
-- [[実行結果>https://github.com/seasarorg/sample-doma]] ...
ソース用リポジトリから使用していないサイトコンテンツを除...
committer-name: jfut
name: doma
svnroot: https://www.seasar.org/svn/doma/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
例にした Doma プロジェクトでは、プロジェクトサイトを trun...
- 参考: [[プロジェクトサイトの管理方法>Committer/ProjectS...
*** tags の扱いが特殊な例 [#format-tag]
この例は、tags の扱いが特殊な例です。
また、ソース用リポジトリとサイト用リポジトリを分けていま...
- ソース用リポジトリ
-- [[実行結果>https://github.com/seasarorg/sample-s2direc...
SVN での tags の付与の仕方が s2directory, s2directory-tig...
また、ignore-paths に trunk/www に加えて、拡張子 .jar .wa...
この指定は、例えば過去に lib フォルダに依存ライブラリを置...
committer-name: jfut
name: s2directory
svnroot: https://www.seasar.org/svn/sandbox/s2directory/
trunk: trunk
tags: tags/s2directory \
branches: branches
ignore-paths: '^trunk/www|\.jar$|\.war$|\.zip$'
- サイト用リポジトリ
-- [[実行結果>https://github.com/seasarorg/sample-s2direc...
trunk/www に対する SVN の tags は存在しないため、単純に t...
committer-name: jfut
name: s2directory-www
svnroot: https://www.seasar.org/svn/sandbox/s2directory/
trunk: trunk/www
*** 特定の branch を master にする例 [#format-branch]
この例は、SVN の trunk ではなく、特定の branch を Git の ...
また、ソース用リポジトリとサイト用リポジトリを分けていま...
- ソース用リポジトリ
-- [[実行結果>https://github.com/seasarorg/sample-teeda]]
この例は、branches/teeda-1.0.13 を git の master にする例...
過去に trunk/www でサイトコンテンツを管理していましたが、...
committer-name: jfut
name: teeda
svnroot: https://www.seasar.org/svn/teeda/
trunk: branches/teeda-1.0.13
tags: tags
branches: branches
ignore-paths: '^(?!branches/.*|trunk/.*)|^trunk/www|^tag...
option.migrate-branches: teeda-1.0.11,teeda-1.0.12
option.no-migrate-tags: 1
* [記入欄] プロジェクト単位: Git リポジトリレイアウト要望...
このページを直接「編集」して、ここにプロジェクトごとの移...
使用した設定フォーマットは随時下記へコミットしてあります。
- https://github.com/seasarorg/server-util/tree/master/mi...
** 2013-10-20 更新: S2Directory [#od639d09]
- ソース用リポジトリ
committer-name: jfut
name: s2directory
svnroot: https://www.seasar.org/svn/sandbox/s2directory/
trunk: trunk
tags: tags/s2directory
ignore-paths: '^trunk/www'
option.no-migrate-branches: 1
- サイト用リポジトリ
committer-name: jfut
name: s2directory-www
svnroot: https://www.seasar.org/svn/sandbox/s2directory/
trunk: trunk/www
option.no-migrate-branches: 1
option.no-migrate-tags: 1
** 2013-09-16 更新: Doma [#kaeb8bee]
- ソース用リポジトリ: doma
-- 2013-09-16 jfut: テストリポジトリ作成: https://github....
committer-name: taedium
name: doma
svnroot: https://www.seasar.org/svn/doma/
ignore-paths: '(^(?!branches/.*|trunk/doma/.*|trunk/doma...
- ソース用リポジトリ: doma-gen
-- 2013-09-16 jfut: テストリポジトリ作成: https://github....
committer-name: taedium
name: doma-gen
svnroot: https://www.seasar.org/svn/doma/
ignore-paths: '(^(?!branches/.*|trunk/doma-gen/.*|trunk/...
- ソース用リポジトリ: doma-samples
-- 2013-09-16 jfut: テストリポジトリ作成: https://github....
committer-name: taedium
name: doma-samples
svnroot: https://www.seasar.org/svn/doma/
ignore-paths: '(^(?!branches/.*|trunk/doma-tutorial/.*|t...
- ソース用リポジトリ: doma-tools
-- 2013-09-16 jfut: テストリポジトリ作成: https://github....
committer-name: taedium
name: doma-tools
svnroot: https://www.seasar.org/svn/doma/
ignore-paths: '(^(?!branches/.*|trunk/org.seasar.doma.ex...
** 2013-09-19 更新: Mayaa [#d2fbba21]
- ソース
-- 2013-09-18 jfut: テストリポジトリ作成: https://github....
committer-name: suga
name: mayaa
svnroot: https://www.seasar.org/svn/mayaa
trunk: trunk/mayaa
tags: tags/mayaa
option.no-migrate-branches: 1
- サイト (2013-09-19 修正)
-- 2013-09-20 jfut: テストリポジトリ作成: https://github....
committer-name: suga
name: mayaa-www
svnroot: https://www.seasar.org/svn/mayaa
trunk: trunk/www
option.no-migrate-tags: 1
option.no-migrate-branches: 1
ignore-paths: '(\.war|\.zip|\.jar)$'
- matatabi (2013-09-19 修正)
-- 2013-09-18 jfut: テストリポジトリ作成: https://github....
committer-name: suga
name: mayaa-matatabi
svnroot: https://www.seasar.org/svn/mayaa
trunk: trunk/matatabi
option.no-migrate-tags: 1
option.no-migrate-branches: 1
- webwork2
-- 2013-09-18 jfut: テストリポジトリ作成: https://github....
committer-name: suga
name: mayaa-webwork2
svnroot: https://www.seasar.org/svn/mayaa
trunk: trunk/mayaa-webwork2
option.no-migrate-tags: 1
option.no-migrate-branches: 1
- struts2
-- 2013-09-18 jfut: テストリポジトリ作成: https://github....
committer-name: suga
name: mayaa-struts2
svnroot: https://www.seasar.org/svn/mayaa
trunk: trunk/struts2-mayaa-plugin
option.no-migrate-tags: 1
option.no-migrate-branches: 1
※テスト、サンプルは移行後にmayaaにコミットする想定
** 2013-09-19 更新: Server [#i1c7f315]
- サイト
-- 2013-09-19 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: server-www
svnroot: https://www.seasar.org/svn/server/
trunk: trunk/www
** 2013-09-19 更新: www [#v7ab9c51]
- サイト
-- 2013-09-19 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: www
svnroot: https://www.seasar.org/svn/www/
trunk: www
** 2013-10-13 更新: S2Container [#da292ad1]
- seasar2
-- 2013-09-23 jfut: エラー対処のため ignore-paths へ |^br...
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: エラー対処のため ignore-paths の ^bra...
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
-- 2013-10-13 koichik: seasar2-tutorialを除外するためigno...
-- 2013-10-13 jfut: 移行し直しました: https://github.com/...
committer-name: koichik
name: seasar2
svnroot: https://www.seasar.org/svn/s2container/
trunk: trunk
ignore-paths: '^trunk/(?!s2-tiger|s2jdbc-gen|s2jdbc-it|s...
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- s2-backport175
-- 2013-09-23 jfut: エラー対処のため ignore-paths へ |^br...
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2-backport175
svnroot: https://www.seasar.org/svn/s2container/
trunk: trunk
ignore-paths: '^trunk/(?!s2-backport175)|^branches'
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- diigu
-- 2013-09-23 jfut: エラー対処のため ignore-paths へ |^br...
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
-- 2013-09-26 koichik: ディレクトリ階層を一つあげるためtr...
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: diigu
svnroot: https://www.seasar.org/svn/s2container/
trunk: trunk/diigu
ignore-paths: '^trunk/(?!diigu)|^branches'
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- ognl
-- 2013-09-23 jfut: エラー対処のため ignore-paths へ |^br...
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: ognl
svnroot: https://www.seasar.org/svn/s2container/
trunk: trunk
ignore-paths: '^trunk/(?!ognl)|^branches'
option.no-migrate-branches: 1
option.no-migrate-tags: 1
** 2013-09-29 更新: Teeda [#o271a398]
- teeda
-- 2013-09-23 jfut: テストリポジトリ作成。: https://githu...
-- 2013-09-24 jfut: テストリポジトリ作成。: https://githu...
-- 2013-09-25 jfut: テストリポジトリ作成。: https://githu...
-- 2013-09-29 koichik: ignore-paths削除
-- 2013-09-29 jfut: テストリポジトリ作成。: https://githu...
committer-name: koichik
name: teeda
svnroot: https://www.seasar.org/svn/teeda/
trunk: branches/teeda-1.0.13
branches: branches
option.migrate-branches: teeda-1.0.11,teeda-1.0.12
option.no-migrate-tags: 1
** 2013-09-23 更新: Kuina [#nb47a75e]
- kuina
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: kuina-dao
svnroot: https://www.seasar.org/svn/kuina/
trunk: trunk
ignore-paths: '^trunk/(kuina(?!-)|www)'
option.no-migrate-tags: 1
** 2013-09-25 更新: S2Hibernate [#s743809f]
- s2hibernate
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2hibernate
svnroot: https://www.seasar.org/svn/s2hibernate/
trunk: trunk
ignore-paths: '^trunk/(s2hibernate(?!/)|www)'
option.no-migrate-tags: 1
- s2hibernate-jpa
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2hibernate-jpa
svnroot: https://www.seasar.org/svn/s2hibernate/
trunk: trunk
ignore-paths: '^trunk/(s2hibernate(?!-)|www)'
option.no-migrate-tags: 1
- サイト用
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2hibernate-www
svnroot: https://www.seasar.org/svn/s2hibernate/
trunk: trunk/www
option.no-migrate-tags: 1
** 2013-09-23 更新: S2OpenJPA [#i213380b]
- s2openjpa
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2openjpa
svnroot: https://www.seasar.org/svn/s2openjpa/
trunk: trunk
option.no-migrate-tags: 1
** 2013-09-23 更新: S2TopLink [#w21cb9d9]
- s2toplink-jpa
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2toplink-jpa
svnroot: https://www.seasar.org/svn/s2toplink/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-23 更新: S2EclipseLink [#p74eae25]
- s2eclipselink-jpa
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2eclipselink-jpa
svnroot: https://www.seasar.org/svn/sandbox/s2eclipselink/
trunk: trunk
option.no-migrate-tags: 1
** 2013-09-23 更新: S2Cayenne [#v46aad9b]
- s2cayenne-jpa
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2cayenne-jpa
svnroot: https://www.seasar.org/svn/sandbox/s2cayenne/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-24 更新: S2Axis [#bdb9aa87]
- s2axis
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2axis
svnroot: https://www.seasar.org/svn/s2axis/
trunk: trunk
ignore-paths: '^trunk/(s2axis2|www)'
option.no-migrate-tags: 1
- s2axis2
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2axis2
svnroot: https://www.seasar.org/svn/s2axis/
trunk: trunk
ignore-paths: '^trunk/(s2axis(?!2)|www)'
option.no-migrate-tags: 1
- サイト用
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2axis-www
svnroot: https://www.seasar.org/svn/s2axis/
trunk: trunk/www
option.no-migrate-tags: 1
** 2013-09-29 更新: S2JCA [#kf693a63]
- s2jca
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-29 koichik: ignore-paths追加
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2jca
svnroot: https://www.seasar.org/svn/s2jca/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-29 更新: S2JMS [#f1eb9162]
- s2jms
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-29 koichik: ignore-paths追加
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2jms
svnroot: https://www.seasar.org/svn/s2jms/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-29 更新: S2Remoting [#hc6c9654]
- s2remoting
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-26 koichik: サイト用リポジトリを分離するためig...
-- 2013-09-29 koichik: サイト用リポジトリ不要のためs2remo...
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2remoting
svnroot: https://www.seasar.org/svn/s2remoting/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-29 更新: S2Rmi [#k476c6d1]
- s2rmi
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-26 koichik: サイト用リポジトリを分離するためig...
-- 2013-09-29 koichik: サイト用リポジトリ不要のためs2rmi-...
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2rmi
svnroot: https://www.seasar.org/svn/s2rmi/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-23 更新: Aptina [#f3aaa2d8]
- aptina
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: aptina
svnroot: https://www.seasar.org/svn/aptina/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-23 更新: JunitCDI [#ba1fc386]
- junitcdi
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: junitcdi
svnroot: https://www.seasar.org/svn/sandbox/junitcdi/
trunk: trunk
tags: tags
ignore-paths: '^trunk/www'
** 2013-09-23 更新: S2Util [#x6bcb32c]
- s2util
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2util
svnroot: https://www.seasar.org/svn/sandbox/s2util/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-23 更新: Tramina [#i403a20f]
- tramina
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: tramina
svnroot: https://www.seasar.org/svn/sandbox/tramina/
trunk: trunk
ignore-paths: '^trunk/www'
** 2013-09-29 更新: Dolteng [#i4b76222]
- dolteng
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-26 koichik: サイト用リポジトリを分離するためig...
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: dolteng
svnroot: https://www.seasar.org/svn/sandbox/dolteng/
trunk: trunk
ignore-paths: '^trunk/www'
- サイト用
-- 2013-09-26 koichik: 新規作成
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: dolteng-www
svnroot: https://www.seasar.org/svn/sandbox/dolteng/
trunk: trunk/www
** 2013-09-29 更新: Resource-Synchronizer [#pc5cad02]
- resource-synchronizer
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-26 koichik: サイト用リポジトリを分離するためig...
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: resource-synchronizer
svnroot: https://www.seasar.org/svn/sandbox/resourcesync...
trunk: trunk
ignore-paths: '^trunk/www'
- サイト用
-- 2013-09-26 koichik: 新規作成
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: resource-synchronizer-www
svnroot: https://www.seasar.org/svn/sandbox/resourcesync...
trunk: trunk/www
** 2013-09-23 更新: Eclipse [#zbe207d0]
-3.0用更新サイト
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.0
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.0
-3.1用更新サイト
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.1
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.1
-3.1用更新サイト(beta)
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.1-beta
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.1beta
-3.2用更新サイト
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.2
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.2
-3.3用更新サイト
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.3
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.3
-3.3用更新サイト(dev)
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.3-dev
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.3-dev
-3.5用更新サイト
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.5
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.5
-3.5用更新サイト(dev)
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.5-dev
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.5-dev
** 2013-09-29 更新: Maven [#s35e74a9]
- maven
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-26 koichik: サイト用リポジトリを分離するためig...
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: maven
svnroot: https://www.seasar.org/svn/maven/
trunk: trunk
ignore-paths: '^trunk/www'
- サイト用
-- 2013-09-26 koichik: 新規作成
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: maven-www
svnroot: https://www.seasar.org/svn/maven/
trunk: trunk/www
** 2013-09-24 更新: S2JCR [#zb29d553]
committer-name: shinsuke
おまかせ
下記で作成しました。追加の要望があればお知らせください。
- s2jcr
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: trunk: trunk/s2jcr へ変更
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: s2jcr
svnroot: https://www.seasar.org/svn/sandbox/s2jcr/
trunk: trunk/s2jcr
tags: tags
branches: branches
ignore-paths: '^trunk/www'
- s2jcr-www
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: s2jcr-www
svnroot: https://www.seasar.org/svn/sandbox/s2jcr/
trunk: trunk/www
option.no-migrate-branches: 1
** 2013-09-24 更新: S2Portlet [#u1d5e9de]
committer-name: shinsuke
おまかせ
下記で作成しました。追加の要望があればお知らせください。
- s2portlet
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: trunk: trunk/s2portlet へ変更
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: trunk/s2portlet
svnroot: https://www.seasar.org/svn/s2portlet/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
- s2portlet-www
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: s2portlet-www
svnroot: https://www.seasar.org/svn/s2portlet/
trunk: trunk/www
option.no-migrate-branches: 1
** 2013-09-25 更新: S2Robot [#ba0d2311]
- ソースリポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: s2robot
svnroot: https://www.seasar.org/svn/sandbox/s2robot/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www|^trunk/s2robot-example|^trunk/...
- サンプルアプリリポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成失敗したため、テ...
-- 2013-09-25 jfut: ignore-paths を修正、option.no-migrat...
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: s2robot-example
svnroot: https://www.seasar.org/svn/sandbox/s2robot/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/(?!s2robot-example|s2robot-seo)|^b...
option.no-migrate-branches: 1
option.migrate-tags: s2robot-example-0.1.0
- サイトリポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成失敗したため、テ...
-- 2013-09-25 jfut: ignore-paths 削除、trunk, option.no-m...
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: s2robot-www
svnroot: https://www.seasar.org/svn/sandbox/s2robot/
trunk: trunk/www
option.no-migrate-branches: 1
option.no-migrate-tags: 1
** 2013-10-09 更新: SAStruts [#z6bdfdef]
- sa-struts-archetype (担当分のみ(菅谷))
-- 2013-09-23 jfut: テストリポジトリの中身が空になったた...
-- 2013-09-25 jfut: ignore-paths 修正、option.no-migrate-...
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: trunk 修正、branches, tags 指定削除
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: sa-struts-archetype
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/sa-struts-archetype
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- sa-struts-portlet (担当分のみ(菅谷))
-- 2013-09-23 jfut: テストリポジトリの中身が空になったた...
-- 2013-09-25 jfut: ignore-paths 修正、option.no-migrate-...
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: trunk 修正、branches, tags 指定削除
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: sa-struts-portlet
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/sa-struts-portlet
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- sa-struts
-- 2013-10-09 jfut: archetype と portlet 以外の案がないの...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: sa-struts
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/sa-struts
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- sa-struts-blank
-- 2013-10-09 jfut: archetype と portlet 以外の案がないの...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: sa-struts-blank
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/sa-struts-blank
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- sa-struts-plugin
-- 2013-10-09 jfut: archetype と portlet 以外の案がないの...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: sa-struts-plugin
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/sa-struts-plugin
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- sa-struts-tutorial
-- 2013-10-09 jfut: archetype と portlet 以外の案がないの...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: sa-struts-tutorial
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/sa-struts-tutorial
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- sa-struts-blank
-- 2013-10-09 jfut: archetype と portlet 以外の案がないの...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: sa-struts-blank
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/www
option.no-migrate-branches: 1
option.no-migrate-tags: 1
** 2013-09-23 更新: s2buri [#i4bf8d09]
- ソース用リポジトリ
-- 2013-09-23 jfut: 誤植と思われる tags/s2directory を ta...
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: makotan
name: s2buri
svnroot: https://www.seasar.org/svn/sandbox/s2buri/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
- サイト用リポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: makotan
name: s2buri-www
svnroot: https://www.seasar.org/svn/sandbox/s2buri/
trunk: trunk/www
option.no-migrate-branches: 1
option.no-migrate-tags: 1
** 2013-09-24 更新: S2Click [#n60536df]
- ソース用リポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: takezoe
name: s2click
svnroot: https://www.seasar.org/svn/sandbox/s2click/
trunk: trunk/s2click
option.no-migrate-branches: 1
option.no-migrate-tags: 1
ignore-paths: '^trunk/eclipse|^trunk/s2click-old|^trunk/...
- Eclipseプラグイン
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: takezoe
name: s2click-eclipse
svnroot: https://www.seasar.org/svn/sandbox/s2click/
trunk: trunk/eclipse
option.no-migrate-branches: 1
option.no-migrate-tags: 1
ignore-paths: '^trunk/s2click|^trunk/s2click-old|^trunk/...
- サイト用リポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: takezoe
name: s2click-www
svnroot: https://www.seasar.org/svn/sandbox/s2click/
trunk: trunk/www
option.no-migrate-branches: 1
option.no-migrate-tags: 1
ignore-paths: '^trunk/eclipse|^trunk/s2click|^trunk/s2cl...
** 2013-09-24 更新: S2JSFPlugin [#ec14eed4]
- ソース用リポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: takezoe
name: s2jsfplugin
svnroot: https://www.seasar.org/svn/s2jsfplugin/
trunk: trunk
tags: tags
option.no-migrate-branches: 1
ignore-paths: '^trunk/www'
- サイト用リポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: takezoe
name: s2jsfplugin-www
svnroot: https://www.seasar.org/svn/s2jsfplugin/
trunk: trunk/www
tags: tags
option.no-migrate-branches: 1
ignore-paths: '^trunk/org.seasar.s2jsfplugin|^trunk/org....
** 2013-09-26 更新: S2JSF [#j6fbdd5d]
- ソース用リポジトリ
-- 2013-09-26 jfut: テストリポジトリ作成: https://github....
-- 2013-09-29 jfut: tags を複数対応に修正しました
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: yone098
name: s2jsf
svnroot: https://www.seasar.org/svn/s2jsf/
trunk: trunk
tags: tags/2005-11-25
tags: tags/2005-12-08
tags: tags/2005-12-21
tags: tags/2006-01-21
tags: tags/2006-03-22
tags: tags/2006-04-11
tags: tags/2006-07-17
tags: tags/2006-08-05
tags: tags/2006-08-07
tags: tags/2006-08-16
tags: tags/2006-09-03
tags: tags/2006-09-04
tags: tags/2006-09-22
tags: tags/2006-10-15
tags: tags/2006-10-16
tags: tags/2006-11-07
tags: tags/2006-11-14
tags: tags/2006-12-17
tags: tags/2006-12-29
tags: tags/2007-01-27
tags: tags/2007-03-02
tags: tags/2007-03-05
tags: tags/2007-03-10
tags: tags/2007-05-26
tags: tags/2007-07-31
tags: tags/2008-02-23
tags: tags/2008-06-04
option.no-migrate-branches: 1
ignore-paths: '^trunk/www'
- サイト用リポジトリ
-- 2013-09-26 jfut: テストリポジトリ作成: https://github....
committer-name: yone098
name: s2jsf-www
svnroot: https://www.seasar.org/svn/s2jsf/
trunk: trunk/www
tags: tags
option.no-migrate-branches: 1
option.no-migrate-tags: 1
** 2013-09-30 更新: DBFlute [#i81f7d53]
- ソース用リポジトリ
-- 2013-09-26 jfut: テストリポジトリ作成: https://github....
-- 2013-09-27 jfut: ignore-paths: '^trunk/(?!dbflute/|dbf...
-- 2013-09-27 jfut: テストリポジトリ作成: https://github....
--- 移行スクリプトの問題で option.replace-empty-commit-me...
committer-name: jflute
name: dbflute
svnroot: https://www.seasar.org/svn/dbflute/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/(?!dbflute/|dbflute-runtime/)|\.ja...
option.replace-empty-commit-messages: 1
option.replace-empty-commit-messages.string: accident em...
option.no-migrate-tags: 1
option.no-migrate-branches: 1
-- jarやzipなどは重いので除外します。足りないものは移行後...
-- %%その他、Exampleなどはまだ保留中 2013/09/26 by jflute%%
--- 履歴は移行しないので、権限さえあれば手動で移行致しま...
- サイト用リポジトリ
-- 2013-09-26 jfut: テストリポジトリ作成: https://github....
committer-name: jflute
name: dbflute-www
svnroot: https://www.seasar.org/svn/dbflute/
trunk: trunk/www
ignore-paths: '\.jar$|\.war$|\.zip$'
option.no-migrate-tags: 1
option.no-migrate-branches: 1
-- jarやzipなどは重いので除外します。足りないものは移行後...
- EMechaソース用リポジトリ
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: jflute
name: dbflute-emecha
svnroot: https://www.seasar.org/svn/sandbox/emecha
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
option.replace-empty-commit-messages: 1
option.replace-empty-commit-messages.string: accident em...
option.no-migrate-tags: 1
option.no-migrate-branches: 1
-- EMechaはDBFluteのサブプロジェクトに戻します。 by jflute
- UTFluteソース用リポジトリ
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
-- 2013-09-30 jflute: svnroot に utflute のフォルダも含め...
-- 2013-09-30 jfut: 失敗するので svnroot と trunk 指定を...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: jflute
name: dbflute-utflute
svnroot: https://www.seasar.org/svn/dbflute/
trunk: trunk/utflute
tags: tags
branches: branches
ignore-paths: '\.jar$|\.war$|\.zip$'
option.replace-empty-commit-messages: 1
option.replace-empty-commit-messages.string: accident em...
option.no-migrate-tags: 1
option.no-migrate-branches: 1
- DBFluteMavenPluginソース用リポジトリ
-- 2013-09-30 jfut: svnroot の URL に trunk が抜けていた...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
-- 2013-09-30 jfut: 失敗するので svnroot と trunk 指定を...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
-- 2013-09-30 jfut: option.no-migrate-tags, option.no-mig...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: jflute
name: dbflute-maven-plugin
svnroot: https://www.seasar.org/svn/dbflute/
trunk: trunk/dbflute-maven-plugin
tags: tags
branches: branches
option.replace-empty-commit-messages: 1
option.replace-empty-commit-messages.string: accident em...
option.no-migrate-tags: 1
option.no-migrate-branches: 1
-- リポジトリの直下にsrcフォルダが来るようにします。 by j...
- その他、Example, DBFlute.NETなど
-- 履歴は移行しないので、権限さえあれば手動で移行致します...
** 2013-09-29 更新: Uruma [#f3be4ea0]
- ソース用リポジトリ(Uruma)
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: y-komori
name: uruma
svnroot: https://www.seasar.org/svn/sandbox/uruma/
trunk: trunk
tags: tags/uruma
ignore-paths: '^trunk/www|^trunk/uruma-skin|^trunk/maven...
option.replace-empty-commit-messages: 1
option.no-migrate-branches: 1
- サイト用リポジトリ
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: y-komori
name: uruma-www
svnroot: https://www.seasar.org/svn/sandbox/uruma/
trunk: trunk/www
option.replace-empty-commit-messages: 1
option.no-migrate-branches: 1
- ソース用リポジトリ(maven-eclipath-plugin)
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: y-komori
name: maven-eclipath-plugin
svnroot: https://www.seasar.org/svn/sandbox/uruma/
trunk: trunk/maven-eclipath-plugin
tags: tags/maven-eclipath-plugin
option.replace-empty-commit-messages: 1
option.no-migrate-branches: 1
--(補足)maven-eclipath-pluginはツールとして作成したもので...
** 2013-09-28 更新: eclipsecommon [#u757e254]
- eclipse-common
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
committer-name: y-komori
name: eclipse-common
svnroot: https://www.seasar.org/svn/sandbox/eclipsecommon/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
option.no-migrate-branches: 1
** 2013-09-30 更新: s2dao [#c07ac1b8]
- s2dao
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09-28 jfut: 空になってしまったので ignore-paths ...
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09-30 azusa: ブランチ不要なので、option.no-migrat...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: azusa
name: s2dao
svnroot: https://www.seasar.org/svn/s2dao/
trunk: branches/s2dao-1.0.x
option.no-migrate-tags: 1
option.no-migrate-branches: 1
- s2dao-www
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09-30 azusa: タグ不要なのでoption.no-migrate-tags...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: azusa
name: s2dao-www
svnroot: https://www.seasar.org/svn/s2dao/
trunk: trunk/www
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- s2dao-pager-examples
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09-28 jfut: 空になってしまったので ignore-paths ...
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09030 azusa: ブランチ不要なので、option.no-migrat...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: azusa
name: s2dao-pager-examples
svnroot: https://www.seasar.org/svn/s2dao/
trunk: branches/s2dao-pager-examples-1.0.x
option.no-migrate-tags: 1
option.no-migrate-branches: 1
- s2dao-tiger
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09-28 jfut: 空になってしまったので ignore-paths ...
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09030 azusa: ブランチ不要なので、option.no-migrat...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: azusa
name: s2dao-tiger
svnroot: https://www.seasar.org/svn/s2dao/
trunk: branches/s2dao-tiger-1.0.x
option.no-migrate-tags: 1
option.no-migrate-branches: 1
** 2013-10-02 更新: S2Dao-Codegen [#g4969568]
- s2dao-codegen
-- 2013-10-02 jfut: 承知しました。
committer-name: azusa
自分で移行します。
** 2013-10-09 更新: Ymir [#m8914945]
- ymir
-- 2013-10-02 jfut: 考えます。
-- 2013-10-09 jfut: 考えて ymir- シリーズを記述しました。
committer-name: skirnir
おまかせ
(かなり複雑な構造のため、移行していただいてからこちらで...
- ymir-component
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: ymir-component
svnroot: https://www.seasar.org/svn/ymir/
trunk: component/trunk
tags: component/tags
branches: component/branches
- ymir-design
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: ymir-design
svnroot: https://www.seasar.org/svn/ymir/
trunk: design/trunk
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- ymir-eclipse
-- 2013-10-09 jfut: tag は存在するが構造的にそのままでは...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: ymir-eclipse
svnroot: https://www.seasar.org/svn/ymir/
trunk: eclipse/trunk
tags: eclipse/tags
branches: eclipse/branches
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- ymir-example
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: ymir-example
svnroot: https://www.seasar.org/svn/ymir/
trunk: example/trunk
tags: example/tags/ymir-example-generic
branches: example/branches
- ymir-skeleton
-- 2013-10-09 jfut: tag は存在するが構造的にそのままでは...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: ymir-skeleton
svnroot: https://www.seasar.org/svn/ymir/
trunk: skeleton/trunk
tags: skeleton/tags
branches: skeleton/branches
option.no-migrate-tags: 1
** 2013-10-09 更新: CMS [#e3f7256e]
- cms
-- 2013-10-02 jfut: 考えます。
-- 2013-10-09 jfut: 考えて ymir- シリーズを記述しました。
committer-name: skirnir
おまかせ
(複雑な構造のため、移行していただいてからこちらで整理す...
- cms (jfut)
-- 2013-10-09 jfut: tag は存在するが構造的にそのままでは...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: cms
svnroot: https://www.seasar.org/svn/sandbox/cms/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-10-09 更新: Kvasir/Sora [#pe45298f]
- kvasir
-- 2013-10-02 jfut: 考えます。
-- 2013-10-09 jfut: 考えて kvasir- シリーズを記述しました。
committer-name: skirnir
おまかせ
(かなり複雑な構造のため、移行していただいてからこちらで...
/_old以下は移行不要です。
- kvasir-package
-- 2013-10-09 jfut: tag は存在するが構造的にそのままでは...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: kvasir-package
svnroot: https://www.seasar.org/svn/sandbox/kvasir/
trunk: package/trunk
tags: package/tags
branches: package/branches
option.no-migrate-tags: 1
- kvasir-extra
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: kvasir-extra
svnroot: https://www.seasar.org/svn/sandbox/kvasir/
trunk: extra/plugin/trunk
tags: extra/plugin/tags
branches: extra/plugin/branches
option.no-migrate-tags: 1
- kvasir-plust
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: kvasir-plust
svnroot: https://www.seasar.org/svn/sandbox/kvasir/
trunk: plust/trunk
tags: plust/tags
branches: plust/branches
- kvasir-site
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: kvasir-site
svnroot: https://www.seasar.org/svn/sandbox/kvasir/
trunk: site/trunk
tags: site/tags
branches: site/branches
option.no-migrate-tags: 1
option.no-migrate-branches: 1
- kvasir-www
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: kvasir-www
svnroot: https://www.seasar.org/svn/sandbox/kvasir/
trunk: www/trunk
option.no-migrate-tags: 1
option.no-migrate-branches: 1
* 関連ページ [#n870d22b]
- [[GitMigration]]
- [[Git]]
終了行:
* 2013-10-07: 要望があったリポジトリの移行完了 [#eb87fa04]
&color(#ff0000){2013-10-07: 期限までに要望があったリポジ...
* 2013-10-09: 要望が無かったリポジトリについて [#x3c9bf5b]
基本的に既存リポジトリのままで移行しました。Subversion と...
この処理で移行された GitHub のリポジトリページには、下記...
&color(#ff0000){(This repository was migrated from SVN au...
移行されたリポジトリの内容に問題がないようであれば、上記...
後日、やっぱり要望して移行し直して欲しい場合は[[Committer...
移行に使用した設定ファイルは下記にあります。
- [[移行に使用した設定ファイル一覧>https://github.com/sea...
* プロジェクト単位: Git リポジトリレイアウトの移行要望[#t...
&color(#ff0000){GitHub アカウントの登録は[[こちら!>GitMi...
Git リポジトリレイアウトの移行要望ページです。Subversion ...
この内容に関して質問や足りない内容があれば、[[Seasar Comm...
#contents
* 移行作業要望 [#w69cf770]
&color(#ff0000){要望期限: %%2013-09-30(月)%%}; まだ間に合...
移行作業を要望をされた場合、2013-10-07 (予定) 以降の移行...
移行期間中に記入していただいた内容は、随時テストリポジト...
** フォーマット [#k0d79bf8]
下記のフォーマットで記載してください。
このフォーマットで表現しきれない、こういう風にしたいけど...
3, 4 のフォーマットを指定していただいた場合は、変換スクリ...
- [[変換スクリプト>https://github.com/seasarorg/server-ut...
*** 1. プロジェクトコミッタ本人が自分で移行するフォーマッ...
自分で移行する場合のフォーマットは次のとおりです。
committer-name: あなたの Seasar.org のアカウント名 (http...
自分で移行します。
この場合、現在のコミッタ情報に応じてプロジェクトのチーム...
&color(#000,#bdf){他のプロジェクトのリポジトリと混同しな...
*** 2. 移行作業者に任せる要望フォーマット [#s2c88a14]
移行作業者にすべてを任せる場合のフォーマットは次のとおり...
どのような移行結果でも良い、もしくは、どのように移行する...
committer-name: あなたの Seasar.org のアカウント名 (http...
おまかせ
テストリポジトリを作成しますので必ずその内容で良いか確認...
おまかせにした場合、[[シンプルな例>#format-simple]]をベー...
*** 3. 典型的な要望フォーマット [#t9553f2f]
典型的な要望フォーマットは次のとおりです。'^trunk/www' は...
committer-name: yourname
name: projectname
svnroot: https://www.seasar.org/svn/projectname/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
この指定は次の内容になります。
- 最小フォーマットによる移行結果
-- GitHub に projectname という名前のリポジトリを作成しま...
-- SVN の移行元は https://www.seasar.org/svn/projectname/...
-- SVN の trunk が Git の master になります。
-- SVN の branches が Git の branches になります。
-- SVN の tags が Git の branches になります。
-- SVN へコミットしたすべてのファイルを Git へ移行します...
-- Git へ移行時にコミットログに自動的に付与される SVN の...
--- コミットID の例: git-svn-id: https://www.seasar.org/s...
-- SVN に空のコミットメッセージがあった場合、そのまま移行...
-- SVN に設定されていた svn:ignore の内容を .gitignore フ...
-- SVN 特有の tags のスタイルを Git に適した tags のスタ...
-- 変更点がない空のコミットがあった場合にそのコミットを取...
*** 4. すべてのオプションを指定したフォーマット [#ka9e4ca2]
すべてのオプションを指定したフォーマットです。移行準備期...
committer-name: yourname
name: projectname
svnroot: https://www.seasar.org/svn/projectname/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
option.remove-git-svn-id: 1
option.replace-empty-commit-messages: 1
option.replace-empty-commit-messages.string: '<empty com...
option.migrate-branches: name-1.x,name-2.x
option.migrate-tags: 1.0,1.1,2.0
option.no-convert-ignore-file: 1
option.no-convert-empty-directory: 1
option.no-convert-git-style-tag: 1
option.no-prune-empty: 1
option.no-migrate-branches: 1
option.no-migrate-tags: 1
各項目の意味は次の「フォーマットに指定できる設定一覧」の...
** フォーマットに指定できる設定一覧 [#s91bee3a]
フォーマットに指定できる設定は下記のとおりです。
,項目名,意味,必須項目,デフォルト値
,committer-name,[[あなたの Seasar.org のアカウント名>http...
,name,GitHub に作成する希望リポジトリ名,Y,
,svnroot,Git に移行する SVN のルートディレクトリ,Y,
,trunk,Git の master ブランチ(SVN における trunk)にする s...
,tags,Git の tag にする svnroot からみた tags があるパス...
,branches,Git の branches にする svnroot からみた branche...
,ignore-paths,移行時に除外したいファイルの正規表現を指定...
,option.remove-git-svn-id,移行時にコミットログに付与され...
,option.replace-empty-commit-messages,空のコミットメッセ...
,option.replace-empty-commit-messages.string,空のコミット...
,option.migrate-branches,指定した branch のみを移行したい...
,option.migrate-tags,指定した tags のみを移行したい場合に...
,option.no-convert-ignore-file,svn:ignore から .gitignore...
,option.no-convert-empty-directory,空のディレクトリに .gi...
,option.no-convert-git-style-tag,SVN 特有の tags のスタイ...
,option.no-prune-empty,変更点がない空のコミットを取り除き...
,option.no-migrate-branches,branches を移行しない(push し...
,option.no-migrate-tags,tags を移行しない(push しない)場...
** 要望記入例と実行例 [#k4821270]
要望記入例と実行例です。
*** シンプルな例 [#format-simple]
この例は最もシンプルな例です。
- ソース用リポジトリ
-- [[実行結果>https://github.com/seasarorg/sample-doma]] ...
ソース用リポジトリから使用していないサイトコンテンツを除...
committer-name: jfut
name: doma
svnroot: https://www.seasar.org/svn/doma/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
例にした Doma プロジェクトでは、プロジェクトサイトを trun...
- 参考: [[プロジェクトサイトの管理方法>Committer/ProjectS...
*** tags の扱いが特殊な例 [#format-tag]
この例は、tags の扱いが特殊な例です。
また、ソース用リポジトリとサイト用リポジトリを分けていま...
- ソース用リポジトリ
-- [[実行結果>https://github.com/seasarorg/sample-s2direc...
SVN での tags の付与の仕方が s2directory, s2directory-tig...
また、ignore-paths に trunk/www に加えて、拡張子 .jar .wa...
この指定は、例えば過去に lib フォルダに依存ライブラリを置...
committer-name: jfut
name: s2directory
svnroot: https://www.seasar.org/svn/sandbox/s2directory/
trunk: trunk
tags: tags/s2directory \
branches: branches
ignore-paths: '^trunk/www|\.jar$|\.war$|\.zip$'
- サイト用リポジトリ
-- [[実行結果>https://github.com/seasarorg/sample-s2direc...
trunk/www に対する SVN の tags は存在しないため、単純に t...
committer-name: jfut
name: s2directory-www
svnroot: https://www.seasar.org/svn/sandbox/s2directory/
trunk: trunk/www
*** 特定の branch を master にする例 [#format-branch]
この例は、SVN の trunk ではなく、特定の branch を Git の ...
また、ソース用リポジトリとサイト用リポジトリを分けていま...
- ソース用リポジトリ
-- [[実行結果>https://github.com/seasarorg/sample-teeda]]
この例は、branches/teeda-1.0.13 を git の master にする例...
過去に trunk/www でサイトコンテンツを管理していましたが、...
committer-name: jfut
name: teeda
svnroot: https://www.seasar.org/svn/teeda/
trunk: branches/teeda-1.0.13
tags: tags
branches: branches
ignore-paths: '^(?!branches/.*|trunk/.*)|^trunk/www|^tag...
option.migrate-branches: teeda-1.0.11,teeda-1.0.12
option.no-migrate-tags: 1
* [記入欄] プロジェクト単位: Git リポジトリレイアウト要望...
このページを直接「編集」して、ここにプロジェクトごとの移...
使用した設定フォーマットは随時下記へコミットしてあります。
- https://github.com/seasarorg/server-util/tree/master/mi...
** 2013-10-20 更新: S2Directory [#od639d09]
- ソース用リポジトリ
committer-name: jfut
name: s2directory
svnroot: https://www.seasar.org/svn/sandbox/s2directory/
trunk: trunk
tags: tags/s2directory
ignore-paths: '^trunk/www'
option.no-migrate-branches: 1
- サイト用リポジトリ
committer-name: jfut
name: s2directory-www
svnroot: https://www.seasar.org/svn/sandbox/s2directory/
trunk: trunk/www
option.no-migrate-branches: 1
option.no-migrate-tags: 1
** 2013-09-16 更新: Doma [#kaeb8bee]
- ソース用リポジトリ: doma
-- 2013-09-16 jfut: テストリポジトリ作成: https://github....
committer-name: taedium
name: doma
svnroot: https://www.seasar.org/svn/doma/
ignore-paths: '(^(?!branches/.*|trunk/doma/.*|trunk/doma...
- ソース用リポジトリ: doma-gen
-- 2013-09-16 jfut: テストリポジトリ作成: https://github....
committer-name: taedium
name: doma-gen
svnroot: https://www.seasar.org/svn/doma/
ignore-paths: '(^(?!branches/.*|trunk/doma-gen/.*|trunk/...
- ソース用リポジトリ: doma-samples
-- 2013-09-16 jfut: テストリポジトリ作成: https://github....
committer-name: taedium
name: doma-samples
svnroot: https://www.seasar.org/svn/doma/
ignore-paths: '(^(?!branches/.*|trunk/doma-tutorial/.*|t...
- ソース用リポジトリ: doma-tools
-- 2013-09-16 jfut: テストリポジトリ作成: https://github....
committer-name: taedium
name: doma-tools
svnroot: https://www.seasar.org/svn/doma/
ignore-paths: '(^(?!branches/.*|trunk/org.seasar.doma.ex...
** 2013-09-19 更新: Mayaa [#d2fbba21]
- ソース
-- 2013-09-18 jfut: テストリポジトリ作成: https://github....
committer-name: suga
name: mayaa
svnroot: https://www.seasar.org/svn/mayaa
trunk: trunk/mayaa
tags: tags/mayaa
option.no-migrate-branches: 1
- サイト (2013-09-19 修正)
-- 2013-09-20 jfut: テストリポジトリ作成: https://github....
committer-name: suga
name: mayaa-www
svnroot: https://www.seasar.org/svn/mayaa
trunk: trunk/www
option.no-migrate-tags: 1
option.no-migrate-branches: 1
ignore-paths: '(\.war|\.zip|\.jar)$'
- matatabi (2013-09-19 修正)
-- 2013-09-18 jfut: テストリポジトリ作成: https://github....
committer-name: suga
name: mayaa-matatabi
svnroot: https://www.seasar.org/svn/mayaa
trunk: trunk/matatabi
option.no-migrate-tags: 1
option.no-migrate-branches: 1
- webwork2
-- 2013-09-18 jfut: テストリポジトリ作成: https://github....
committer-name: suga
name: mayaa-webwork2
svnroot: https://www.seasar.org/svn/mayaa
trunk: trunk/mayaa-webwork2
option.no-migrate-tags: 1
option.no-migrate-branches: 1
- struts2
-- 2013-09-18 jfut: テストリポジトリ作成: https://github....
committer-name: suga
name: mayaa-struts2
svnroot: https://www.seasar.org/svn/mayaa
trunk: trunk/struts2-mayaa-plugin
option.no-migrate-tags: 1
option.no-migrate-branches: 1
※テスト、サンプルは移行後にmayaaにコミットする想定
** 2013-09-19 更新: Server [#i1c7f315]
- サイト
-- 2013-09-19 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: server-www
svnroot: https://www.seasar.org/svn/server/
trunk: trunk/www
** 2013-09-19 更新: www [#v7ab9c51]
- サイト
-- 2013-09-19 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: www
svnroot: https://www.seasar.org/svn/www/
trunk: www
** 2013-10-13 更新: S2Container [#da292ad1]
- seasar2
-- 2013-09-23 jfut: エラー対処のため ignore-paths へ |^br...
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: エラー対処のため ignore-paths の ^bra...
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
-- 2013-10-13 koichik: seasar2-tutorialを除外するためigno...
-- 2013-10-13 jfut: 移行し直しました: https://github.com/...
committer-name: koichik
name: seasar2
svnroot: https://www.seasar.org/svn/s2container/
trunk: trunk
ignore-paths: '^trunk/(?!s2-tiger|s2jdbc-gen|s2jdbc-it|s...
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- s2-backport175
-- 2013-09-23 jfut: エラー対処のため ignore-paths へ |^br...
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2-backport175
svnroot: https://www.seasar.org/svn/s2container/
trunk: trunk
ignore-paths: '^trunk/(?!s2-backport175)|^branches'
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- diigu
-- 2013-09-23 jfut: エラー対処のため ignore-paths へ |^br...
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
-- 2013-09-26 koichik: ディレクトリ階層を一つあげるためtr...
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: diigu
svnroot: https://www.seasar.org/svn/s2container/
trunk: trunk/diigu
ignore-paths: '^trunk/(?!diigu)|^branches'
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- ognl
-- 2013-09-23 jfut: エラー対処のため ignore-paths へ |^br...
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: ognl
svnroot: https://www.seasar.org/svn/s2container/
trunk: trunk
ignore-paths: '^trunk/(?!ognl)|^branches'
option.no-migrate-branches: 1
option.no-migrate-tags: 1
** 2013-09-29 更新: Teeda [#o271a398]
- teeda
-- 2013-09-23 jfut: テストリポジトリ作成。: https://githu...
-- 2013-09-24 jfut: テストリポジトリ作成。: https://githu...
-- 2013-09-25 jfut: テストリポジトリ作成。: https://githu...
-- 2013-09-29 koichik: ignore-paths削除
-- 2013-09-29 jfut: テストリポジトリ作成。: https://githu...
committer-name: koichik
name: teeda
svnroot: https://www.seasar.org/svn/teeda/
trunk: branches/teeda-1.0.13
branches: branches
option.migrate-branches: teeda-1.0.11,teeda-1.0.12
option.no-migrate-tags: 1
** 2013-09-23 更新: Kuina [#nb47a75e]
- kuina
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: kuina-dao
svnroot: https://www.seasar.org/svn/kuina/
trunk: trunk
ignore-paths: '^trunk/(kuina(?!-)|www)'
option.no-migrate-tags: 1
** 2013-09-25 更新: S2Hibernate [#s743809f]
- s2hibernate
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2hibernate
svnroot: https://www.seasar.org/svn/s2hibernate/
trunk: trunk
ignore-paths: '^trunk/(s2hibernate(?!/)|www)'
option.no-migrate-tags: 1
- s2hibernate-jpa
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2hibernate-jpa
svnroot: https://www.seasar.org/svn/s2hibernate/
trunk: trunk
ignore-paths: '^trunk/(s2hibernate(?!-)|www)'
option.no-migrate-tags: 1
- サイト用
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2hibernate-www
svnroot: https://www.seasar.org/svn/s2hibernate/
trunk: trunk/www
option.no-migrate-tags: 1
** 2013-09-23 更新: S2OpenJPA [#i213380b]
- s2openjpa
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2openjpa
svnroot: https://www.seasar.org/svn/s2openjpa/
trunk: trunk
option.no-migrate-tags: 1
** 2013-09-23 更新: S2TopLink [#w21cb9d9]
- s2toplink-jpa
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2toplink-jpa
svnroot: https://www.seasar.org/svn/s2toplink/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-23 更新: S2EclipseLink [#p74eae25]
- s2eclipselink-jpa
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2eclipselink-jpa
svnroot: https://www.seasar.org/svn/sandbox/s2eclipselink/
trunk: trunk
option.no-migrate-tags: 1
** 2013-09-23 更新: S2Cayenne [#v46aad9b]
- s2cayenne-jpa
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2cayenne-jpa
svnroot: https://www.seasar.org/svn/sandbox/s2cayenne/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-24 更新: S2Axis [#bdb9aa87]
- s2axis
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2axis
svnroot: https://www.seasar.org/svn/s2axis/
trunk: trunk
ignore-paths: '^trunk/(s2axis2|www)'
option.no-migrate-tags: 1
- s2axis2
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2axis2
svnroot: https://www.seasar.org/svn/s2axis/
trunk: trunk
ignore-paths: '^trunk/(s2axis(?!2)|www)'
option.no-migrate-tags: 1
- サイト用
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2axis-www
svnroot: https://www.seasar.org/svn/s2axis/
trunk: trunk/www
option.no-migrate-tags: 1
** 2013-09-29 更新: S2JCA [#kf693a63]
- s2jca
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-29 koichik: ignore-paths追加
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2jca
svnroot: https://www.seasar.org/svn/s2jca/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-29 更新: S2JMS [#f1eb9162]
- s2jms
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-29 koichik: ignore-paths追加
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2jms
svnroot: https://www.seasar.org/svn/s2jms/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-29 更新: S2Remoting [#hc6c9654]
- s2remoting
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-26 koichik: サイト用リポジトリを分離するためig...
-- 2013-09-29 koichik: サイト用リポジトリ不要のためs2remo...
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2remoting
svnroot: https://www.seasar.org/svn/s2remoting/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-29 更新: S2Rmi [#k476c6d1]
- s2rmi
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-26 koichik: サイト用リポジトリを分離するためig...
-- 2013-09-29 koichik: サイト用リポジトリ不要のためs2rmi-...
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2rmi
svnroot: https://www.seasar.org/svn/s2rmi/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-23 更新: Aptina [#f3aaa2d8]
- aptina
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: aptina
svnroot: https://www.seasar.org/svn/aptina/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-23 更新: JunitCDI [#ba1fc386]
- junitcdi
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: junitcdi
svnroot: https://www.seasar.org/svn/sandbox/junitcdi/
trunk: trunk
tags: tags
ignore-paths: '^trunk/www'
** 2013-09-23 更新: S2Util [#x6bcb32c]
- s2util
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: s2util
svnroot: https://www.seasar.org/svn/sandbox/s2util/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-09-23 更新: Tramina [#i403a20f]
- tramina
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: tramina
svnroot: https://www.seasar.org/svn/sandbox/tramina/
trunk: trunk
ignore-paths: '^trunk/www'
** 2013-09-29 更新: Dolteng [#i4b76222]
- dolteng
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-26 koichik: サイト用リポジトリを分離するためig...
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: dolteng
svnroot: https://www.seasar.org/svn/sandbox/dolteng/
trunk: trunk
ignore-paths: '^trunk/www'
- サイト用
-- 2013-09-26 koichik: 新規作成
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: dolteng-www
svnroot: https://www.seasar.org/svn/sandbox/dolteng/
trunk: trunk/www
** 2013-09-29 更新: Resource-Synchronizer [#pc5cad02]
- resource-synchronizer
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-26 koichik: サイト用リポジトリを分離するためig...
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: resource-synchronizer
svnroot: https://www.seasar.org/svn/sandbox/resourcesync...
trunk: trunk
ignore-paths: '^trunk/www'
- サイト用
-- 2013-09-26 koichik: 新規作成
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: resource-synchronizer-www
svnroot: https://www.seasar.org/svn/sandbox/resourcesync...
trunk: trunk/www
** 2013-09-23 更新: Eclipse [#zbe207d0]
-3.0用更新サイト
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.0
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.0
-3.1用更新サイト
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.1
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.1
-3.1用更新サイト(beta)
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.1-beta
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.1beta
-3.2用更新サイト
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.2
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.2
-3.3用更新サイト
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.3
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.3
-3.3用更新サイト(dev)
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.3-dev
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.3-dev
-3.5用更新サイト
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.5
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.5
-3.5用更新サイト(dev)
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: eclipse-3.5-dev
svnroot: https://www.seasar.org/svn/eclipse/
trunk: www/updates/3.5-dev
** 2013-09-29 更新: Maven [#s35e74a9]
- maven
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-26 koichik: サイト用リポジトリを分離するためig...
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: maven
svnroot: https://www.seasar.org/svn/maven/
trunk: trunk
ignore-paths: '^trunk/www'
- サイト用
-- 2013-09-26 koichik: 新規作成
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: koichik
name: maven-www
svnroot: https://www.seasar.org/svn/maven/
trunk: trunk/www
** 2013-09-24 更新: S2JCR [#zb29d553]
committer-name: shinsuke
おまかせ
下記で作成しました。追加の要望があればお知らせください。
- s2jcr
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: trunk: trunk/s2jcr へ変更
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: s2jcr
svnroot: https://www.seasar.org/svn/sandbox/s2jcr/
trunk: trunk/s2jcr
tags: tags
branches: branches
ignore-paths: '^trunk/www'
- s2jcr-www
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: s2jcr-www
svnroot: https://www.seasar.org/svn/sandbox/s2jcr/
trunk: trunk/www
option.no-migrate-branches: 1
** 2013-09-24 更新: S2Portlet [#u1d5e9de]
committer-name: shinsuke
おまかせ
下記で作成しました。追加の要望があればお知らせください。
- s2portlet
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: trunk: trunk/s2portlet へ変更
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: trunk/s2portlet
svnroot: https://www.seasar.org/svn/s2portlet/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
- s2portlet-www
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: s2portlet-www
svnroot: https://www.seasar.org/svn/s2portlet/
trunk: trunk/www
option.no-migrate-branches: 1
** 2013-09-25 更新: S2Robot [#ba0d2311]
- ソースリポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: s2robot
svnroot: https://www.seasar.org/svn/sandbox/s2robot/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www|^trunk/s2robot-example|^trunk/...
- サンプルアプリリポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成失敗したため、テ...
-- 2013-09-25 jfut: ignore-paths を修正、option.no-migrat...
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: s2robot-example
svnroot: https://www.seasar.org/svn/sandbox/s2robot/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/(?!s2robot-example|s2robot-seo)|^b...
option.no-migrate-branches: 1
option.migrate-tags: s2robot-example-0.1.0
- サイトリポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成失敗したため、テ...
-- 2013-09-25 jfut: ignore-paths 削除、trunk, option.no-m...
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: s2robot-www
svnroot: https://www.seasar.org/svn/sandbox/s2robot/
trunk: trunk/www
option.no-migrate-branches: 1
option.no-migrate-tags: 1
** 2013-10-09 更新: SAStruts [#z6bdfdef]
- sa-struts-archetype (担当分のみ(菅谷))
-- 2013-09-23 jfut: テストリポジトリの中身が空になったた...
-- 2013-09-25 jfut: ignore-paths 修正、option.no-migrate-...
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: trunk 修正、branches, tags 指定削除
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: sa-struts-archetype
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/sa-struts-archetype
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- sa-struts-portlet (担当分のみ(菅谷))
-- 2013-09-23 jfut: テストリポジトリの中身が空になったた...
-- 2013-09-25 jfut: ignore-paths 修正、option.no-migrate-...
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
-- 2013-09-25 jfut: trunk 修正、branches, tags 指定削除
-- 2013-09-25 jfut: テストリポジトリ作成: https://github....
committer-name: shinsuke
name: sa-struts-portlet
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/sa-struts-portlet
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- sa-struts
-- 2013-10-09 jfut: archetype と portlet 以外の案がないの...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: sa-struts
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/sa-struts
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- sa-struts-blank
-- 2013-10-09 jfut: archetype と portlet 以外の案がないの...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: sa-struts-blank
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/sa-struts-blank
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- sa-struts-plugin
-- 2013-10-09 jfut: archetype と portlet 以外の案がないの...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: sa-struts-plugin
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/sa-struts-plugin
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- sa-struts-tutorial
-- 2013-10-09 jfut: archetype と portlet 以外の案がないの...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: sa-struts-tutorial
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/sa-struts-tutorial
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- sa-struts-blank
-- 2013-10-09 jfut: archetype と portlet 以外の案がないの...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: sa-struts-blank
svnroot: https://www.seasar.org/svn/sastruts/
trunk: trunk/www
option.no-migrate-branches: 1
option.no-migrate-tags: 1
** 2013-09-23 更新: s2buri [#i4bf8d09]
- ソース用リポジトリ
-- 2013-09-23 jfut: 誤植と思われる tags/s2directory を ta...
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: makotan
name: s2buri
svnroot: https://www.seasar.org/svn/sandbox/s2buri/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
- サイト用リポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: makotan
name: s2buri-www
svnroot: https://www.seasar.org/svn/sandbox/s2buri/
trunk: trunk/www
option.no-migrate-branches: 1
option.no-migrate-tags: 1
** 2013-09-24 更新: S2Click [#n60536df]
- ソース用リポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: takezoe
name: s2click
svnroot: https://www.seasar.org/svn/sandbox/s2click/
trunk: trunk/s2click
option.no-migrate-branches: 1
option.no-migrate-tags: 1
ignore-paths: '^trunk/eclipse|^trunk/s2click-old|^trunk/...
- Eclipseプラグイン
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: takezoe
name: s2click-eclipse
svnroot: https://www.seasar.org/svn/sandbox/s2click/
trunk: trunk/eclipse
option.no-migrate-branches: 1
option.no-migrate-tags: 1
ignore-paths: '^trunk/s2click|^trunk/s2click-old|^trunk/...
- サイト用リポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
committer-name: takezoe
name: s2click-www
svnroot: https://www.seasar.org/svn/sandbox/s2click/
trunk: trunk/www
option.no-migrate-branches: 1
option.no-migrate-tags: 1
ignore-paths: '^trunk/eclipse|^trunk/s2click|^trunk/s2cl...
** 2013-09-24 更新: S2JSFPlugin [#ec14eed4]
- ソース用リポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: takezoe
name: s2jsfplugin
svnroot: https://www.seasar.org/svn/s2jsfplugin/
trunk: trunk
tags: tags
option.no-migrate-branches: 1
ignore-paths: '^trunk/www'
- サイト用リポジトリ
-- 2013-09-23 jfut: テストリポジトリ作成: https://github....
-- 2013-09-24 jfut: テストリポジトリ作成: https://github....
committer-name: takezoe
name: s2jsfplugin-www
svnroot: https://www.seasar.org/svn/s2jsfplugin/
trunk: trunk/www
tags: tags
option.no-migrate-branches: 1
ignore-paths: '^trunk/org.seasar.s2jsfplugin|^trunk/org....
** 2013-09-26 更新: S2JSF [#j6fbdd5d]
- ソース用リポジトリ
-- 2013-09-26 jfut: テストリポジトリ作成: https://github....
-- 2013-09-29 jfut: tags を複数対応に修正しました
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: yone098
name: s2jsf
svnroot: https://www.seasar.org/svn/s2jsf/
trunk: trunk
tags: tags/2005-11-25
tags: tags/2005-12-08
tags: tags/2005-12-21
tags: tags/2006-01-21
tags: tags/2006-03-22
tags: tags/2006-04-11
tags: tags/2006-07-17
tags: tags/2006-08-05
tags: tags/2006-08-07
tags: tags/2006-08-16
tags: tags/2006-09-03
tags: tags/2006-09-04
tags: tags/2006-09-22
tags: tags/2006-10-15
tags: tags/2006-10-16
tags: tags/2006-11-07
tags: tags/2006-11-14
tags: tags/2006-12-17
tags: tags/2006-12-29
tags: tags/2007-01-27
tags: tags/2007-03-02
tags: tags/2007-03-05
tags: tags/2007-03-10
tags: tags/2007-05-26
tags: tags/2007-07-31
tags: tags/2008-02-23
tags: tags/2008-06-04
option.no-migrate-branches: 1
ignore-paths: '^trunk/www'
- サイト用リポジトリ
-- 2013-09-26 jfut: テストリポジトリ作成: https://github....
committer-name: yone098
name: s2jsf-www
svnroot: https://www.seasar.org/svn/s2jsf/
trunk: trunk/www
tags: tags
option.no-migrate-branches: 1
option.no-migrate-tags: 1
** 2013-09-30 更新: DBFlute [#i81f7d53]
- ソース用リポジトリ
-- 2013-09-26 jfut: テストリポジトリ作成: https://github....
-- 2013-09-27 jfut: ignore-paths: '^trunk/(?!dbflute/|dbf...
-- 2013-09-27 jfut: テストリポジトリ作成: https://github....
--- 移行スクリプトの問題で option.replace-empty-commit-me...
committer-name: jflute
name: dbflute
svnroot: https://www.seasar.org/svn/dbflute/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/(?!dbflute/|dbflute-runtime/)|\.ja...
option.replace-empty-commit-messages: 1
option.replace-empty-commit-messages.string: accident em...
option.no-migrate-tags: 1
option.no-migrate-branches: 1
-- jarやzipなどは重いので除外します。足りないものは移行後...
-- %%その他、Exampleなどはまだ保留中 2013/09/26 by jflute%%
--- 履歴は移行しないので、権限さえあれば手動で移行致しま...
- サイト用リポジトリ
-- 2013-09-26 jfut: テストリポジトリ作成: https://github....
committer-name: jflute
name: dbflute-www
svnroot: https://www.seasar.org/svn/dbflute/
trunk: trunk/www
ignore-paths: '\.jar$|\.war$|\.zip$'
option.no-migrate-tags: 1
option.no-migrate-branches: 1
-- jarやzipなどは重いので除外します。足りないものは移行後...
- EMechaソース用リポジトリ
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: jflute
name: dbflute-emecha
svnroot: https://www.seasar.org/svn/sandbox/emecha
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
option.replace-empty-commit-messages: 1
option.replace-empty-commit-messages.string: accident em...
option.no-migrate-tags: 1
option.no-migrate-branches: 1
-- EMechaはDBFluteのサブプロジェクトに戻します。 by jflute
- UTFluteソース用リポジトリ
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
-- 2013-09-30 jflute: svnroot に utflute のフォルダも含め...
-- 2013-09-30 jfut: 失敗するので svnroot と trunk 指定を...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: jflute
name: dbflute-utflute
svnroot: https://www.seasar.org/svn/dbflute/
trunk: trunk/utflute
tags: tags
branches: branches
ignore-paths: '\.jar$|\.war$|\.zip$'
option.replace-empty-commit-messages: 1
option.replace-empty-commit-messages.string: accident em...
option.no-migrate-tags: 1
option.no-migrate-branches: 1
- DBFluteMavenPluginソース用リポジトリ
-- 2013-09-30 jfut: svnroot の URL に trunk が抜けていた...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
-- 2013-09-30 jfut: 失敗するので svnroot と trunk 指定を...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
-- 2013-09-30 jfut: option.no-migrate-tags, option.no-mig...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: jflute
name: dbflute-maven-plugin
svnroot: https://www.seasar.org/svn/dbflute/
trunk: trunk/dbflute-maven-plugin
tags: tags
branches: branches
option.replace-empty-commit-messages: 1
option.replace-empty-commit-messages.string: accident em...
option.no-migrate-tags: 1
option.no-migrate-branches: 1
-- リポジトリの直下にsrcフォルダが来るようにします。 by j...
- その他、Example, DBFlute.NETなど
-- 履歴は移行しないので、権限さえあれば手動で移行致します...
** 2013-09-29 更新: Uruma [#f3be4ea0]
- ソース用リポジトリ(Uruma)
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: y-komori
name: uruma
svnroot: https://www.seasar.org/svn/sandbox/uruma/
trunk: trunk
tags: tags/uruma
ignore-paths: '^trunk/www|^trunk/uruma-skin|^trunk/maven...
option.replace-empty-commit-messages: 1
option.no-migrate-branches: 1
- サイト用リポジトリ
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: y-komori
name: uruma-www
svnroot: https://www.seasar.org/svn/sandbox/uruma/
trunk: trunk/www
option.replace-empty-commit-messages: 1
option.no-migrate-branches: 1
- ソース用リポジトリ(maven-eclipath-plugin)
-- 2013-09-29 jfut: テストリポジトリ作成: https://github....
committer-name: y-komori
name: maven-eclipath-plugin
svnroot: https://www.seasar.org/svn/sandbox/uruma/
trunk: trunk/maven-eclipath-plugin
tags: tags/maven-eclipath-plugin
option.replace-empty-commit-messages: 1
option.no-migrate-branches: 1
--(補足)maven-eclipath-pluginはツールとして作成したもので...
** 2013-09-28 更新: eclipsecommon [#u757e254]
- eclipse-common
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
committer-name: y-komori
name: eclipse-common
svnroot: https://www.seasar.org/svn/sandbox/eclipsecommon/
trunk: trunk
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
option.no-migrate-branches: 1
** 2013-09-30 更新: s2dao [#c07ac1b8]
- s2dao
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09-28 jfut: 空になってしまったので ignore-paths ...
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09-30 azusa: ブランチ不要なので、option.no-migrat...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: azusa
name: s2dao
svnroot: https://www.seasar.org/svn/s2dao/
trunk: branches/s2dao-1.0.x
option.no-migrate-tags: 1
option.no-migrate-branches: 1
- s2dao-www
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09-30 azusa: タグ不要なのでoption.no-migrate-tags...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: azusa
name: s2dao-www
svnroot: https://www.seasar.org/svn/s2dao/
trunk: trunk/www
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- s2dao-pager-examples
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09-28 jfut: 空になってしまったので ignore-paths ...
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09030 azusa: ブランチ不要なので、option.no-migrat...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: azusa
name: s2dao-pager-examples
svnroot: https://www.seasar.org/svn/s2dao/
trunk: branches/s2dao-pager-examples-1.0.x
option.no-migrate-tags: 1
option.no-migrate-branches: 1
- s2dao-tiger
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09-28 jfut: 空になってしまったので ignore-paths ...
-- 2013-09-28 jfut: テストリポジトリ作成: https://github....
-- 2013-09030 azusa: ブランチ不要なので、option.no-migrat...
-- 2013-09-30 jfut: テストリポジトリ作成: https://github....
committer-name: azusa
name: s2dao-tiger
svnroot: https://www.seasar.org/svn/s2dao/
trunk: branches/s2dao-tiger-1.0.x
option.no-migrate-tags: 1
option.no-migrate-branches: 1
** 2013-10-02 更新: S2Dao-Codegen [#g4969568]
- s2dao-codegen
-- 2013-10-02 jfut: 承知しました。
committer-name: azusa
自分で移行します。
** 2013-10-09 更新: Ymir [#m8914945]
- ymir
-- 2013-10-02 jfut: 考えます。
-- 2013-10-09 jfut: 考えて ymir- シリーズを記述しました。
committer-name: skirnir
おまかせ
(かなり複雑な構造のため、移行していただいてからこちらで...
- ymir-component
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: ymir-component
svnroot: https://www.seasar.org/svn/ymir/
trunk: component/trunk
tags: component/tags
branches: component/branches
- ymir-design
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: ymir-design
svnroot: https://www.seasar.org/svn/ymir/
trunk: design/trunk
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- ymir-eclipse
-- 2013-10-09 jfut: tag は存在するが構造的にそのままでは...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: ymir-eclipse
svnroot: https://www.seasar.org/svn/ymir/
trunk: eclipse/trunk
tags: eclipse/tags
branches: eclipse/branches
option.no-migrate-branches: 1
option.no-migrate-tags: 1
- ymir-example
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: ymir-example
svnroot: https://www.seasar.org/svn/ymir/
trunk: example/trunk
tags: example/tags/ymir-example-generic
branches: example/branches
- ymir-skeleton
-- 2013-10-09 jfut: tag は存在するが構造的にそのままでは...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: ymir-skeleton
svnroot: https://www.seasar.org/svn/ymir/
trunk: skeleton/trunk
tags: skeleton/tags
branches: skeleton/branches
option.no-migrate-tags: 1
** 2013-10-09 更新: CMS [#e3f7256e]
- cms
-- 2013-10-02 jfut: 考えます。
-- 2013-10-09 jfut: 考えて ymir- シリーズを記述しました。
committer-name: skirnir
おまかせ
(複雑な構造のため、移行していただいてからこちらで整理す...
- cms (jfut)
-- 2013-10-09 jfut: tag は存在するが構造的にそのままでは...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: cms
svnroot: https://www.seasar.org/svn/sandbox/cms/
trunk: trunk
tags: tags
branches: branches
ignore-paths: '^trunk/www'
option.no-migrate-tags: 1
** 2013-10-09 更新: Kvasir/Sora [#pe45298f]
- kvasir
-- 2013-10-02 jfut: 考えます。
-- 2013-10-09 jfut: 考えて kvasir- シリーズを記述しました。
committer-name: skirnir
おまかせ
(かなり複雑な構造のため、移行していただいてからこちらで...
/_old以下は移行不要です。
- kvasir-package
-- 2013-10-09 jfut: tag は存在するが構造的にそのままでは...
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: kvasir-package
svnroot: https://www.seasar.org/svn/sandbox/kvasir/
trunk: package/trunk
tags: package/tags
branches: package/branches
option.no-migrate-tags: 1
- kvasir-extra
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: kvasir-extra
svnroot: https://www.seasar.org/svn/sandbox/kvasir/
trunk: extra/plugin/trunk
tags: extra/plugin/tags
branches: extra/plugin/branches
option.no-migrate-tags: 1
- kvasir-plust
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: kvasir-plust
svnroot: https://www.seasar.org/svn/sandbox/kvasir/
trunk: plust/trunk
tags: plust/tags
branches: plust/branches
- kvasir-site
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: kvasir-site
svnroot: https://www.seasar.org/svn/sandbox/kvasir/
trunk: site/trunk
tags: site/tags
branches: site/branches
option.no-migrate-tags: 1
option.no-migrate-branches: 1
- kvasir-www
-- 2013-10-09 jfut: テストリポジトリ作成: https://github....
committer-name: jfut
name: kvasir-www
svnroot: https://www.seasar.org/svn/sandbox/kvasir/
trunk: www/trunk
option.no-migrate-tags: 1
option.no-migrate-branches: 1
* 関連ページ [#n870d22b]
- [[GitMigration]]
- [[Git]]
ページ名: