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