Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GitHubのクローン固有のリポジトリが必要ですが、コミットなしでブランチを作成します。つまり、マスターブランチのクローンを作成するだけです。
リポジトリのクローンを作成してから、.gitフォルダーを除くすべてのファイルをコピーできることはわかっていますが、これが可能かどうかを知りたいと思いました。
あなたはおそらく次のようなものが欲しい
git clone -b master --single-branch --depth 1 elsewhere.git here
または多分
git archive --remote somewhere.git master | tar -xvf - -C /where/i/want/to/put/it