在本地创建一个 Git 仓库(复制 Git 仓库?)

fork a Git repo locally (copy the Git repo?)

我很难在网上找到这个问题的答案。

我的文件系统上有一个本地 Git 存储库。那里有太多的历史。我只需要用 depth=5 左右克隆它,等等

我正在考虑在本地复制 repo,然后 p运行ing 它(摆脱一些旧东西)。

理想情况下,我可以使用以下内容复制原始仓库:

git clone --depth=5 /local/path/to/repo

但我找不到关于 运行 的确切命令的信息。

我尝试了最后一条命令,但收到了这个警告:

warning: --depth is ignored in local clones; use file:// instead

如警告所示:

git clone --depth=5 file:///local/path/to/repo

以下是相关文档: https://mirrors.edge.kernel.org/pub/software/scm/git/docs/git-clone.html#URLS

感谢编辑,@Olegzandr