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 repo 的源代码,仅用于特定标签。据我所知,可以选择使用git clone --depth=1. 我想这是关于如何使用标签的答案。
git clone --depth=1
现在我想在 Node.js 脚本中执行此操作。我检查了使用libgit2的NodeGit包。问题是 libgit2不支持传递深度参数。
所以我坚持使用child-process我不想做的最后一个选项,因为它看起来像是一种解决方法。有没有其他方法可以实现这一目标?
child-process