問題タブ [shallow-clone]
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.
git - Composerを使用して浅いクローンを実行するには?
私は次のものを持っていますcomposer.json
:
しかし、私が実行すると:
クローン作成プロセスには非常に長い時間がかかり、リポジトリのサイズが 25 MB を超えます。
次に、Composer はタイムアウトで停止します。
[Symfony\Component\Process\Exception\ProcessTimedOutException]
プロセス "git clone --no-checkout 'https://github.com/queueit/KnownUser.V3.PHP.git' '.../sites/all/libraries/composer/queueit/KnownUser.V3.PHP' && cd '.../sites/all/libraries/composer/queueit/KnownUser.V3.PHP' && git remote add composer 'https://github.com/queueit/KnownUser.V3.PHP.git' && git fetch composer
" が 300 秒のタイムアウトを超えました。
リポジトリが大きすぎて、すべての git オブジェクトを複製できないと思います。
浅いクローンを使用してリポジトリをより迅速にクローンするにはどうすればよいですか?
たとえば、余分なパラメーター--depth 1
または--single-branch
git パラメーターを Git コマンドに渡すと、Composer によって自動的に取得されますか?
変更はファイル内で自己完結していると予想されるcomposer.json
ため、他のシステムでこのファイルを呼び出したとき、または実行時に他のユーザーがこのファイルを呼び出したときに、外部構成は必要ありませんcomposer install
。