問題タブ [subgit]
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.
subgit - SVN リポジトリのディレクトリ名にスペースが含まれている
subgit を使用して、既存の SVN リポジトリと新しい git リポジトリの間にリンクを作成しようとしています。
SVN リポジトリのディレクトリ名にスペースが含まれているため、構成を作成しようとすると問題が発生すると思われます。
それを回避する方法はありますか?
乾杯
git - subgit - 編集したSVNログメッセージをgitに反映させる方法
subgit を使用して、git と SVN リポジトリを同期しています。SVN の誤解を招くログ メッセージを更新しました。それを git に反映させたいと思います。このようなことがうまくいくかどうか疑問に思っていました:
subgit uninstall
(同期を停止するサーバー上)git checkout master
(私のローカルで)git reset --hard HEAD~5
git push -f
(元の git リポジトリを以前のリビジョンにリセットするため)subgit install
(SVN の変更を git に再同期するため)
私は正しい線にいますか?