問題タブ [svn2git]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
3 に答える
1286 参照

git - git2svn でシンボリック リンクを作成できません (ファイル名が長すぎます)

SVN リポジトリを GIT にすばやく変換するために、svn2gitをインストールしました。別のマシン (Ubuntu 16.04) と別の SVN リポジトリで変換手順を試してみましたが、問題なく動作しました。

現在、私は Linux Mint Cinnamon を別の (しかし非常に類似した) SVN リポジトリで使用しています。

/home 暗号化の可能性 (ファイル長の制限として) について読んだことがありますが、これは私の場合ではありません。ランダムな文字列を触ってみた

これは 256 文字で、ファイルを作成します。

これに対処する方法は?

編集:この問題は macOS Sierra でも発生します。

0 投票する
2 に答える
1567 参照

git - Migrating specific folders from SVN to Git

I have an SVN repo which looks like this:

  • Trunk:
    • dir_1
    • dir_2
    • dir_3
    • dir_4
    • dir_5
    • dir_6

and I wish to Migrate only directories dir_1,dir_2 and dir_5 to a new Git repository including all the branches, and history of those directorys. so that the outcome will be:

  • master:

    • dir_1
    • dir_2
    • dir_5

Is that possible?