我怎样才能“签出”?我的 git repo 的代码到另一个目录?

发布于 2024-10-06 18:37:51 字数 62 浏览 0 评论 0原文

假设我想在任意位置创建我的存储库分支的文件树。这可以吗?有点像svn export

Let's say I want to create a file tree of a branch of my repo in an arbitrary place. Is this possible to do? Kind of like svn export.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一影成城 2024-10-13 18:37:51

据我所知,与 svn export 最接近的是使用 git archive,然后提取结果。像这样:

git archive --format=tar --prefix=SomeName HEAD

然后提取焦油。

The closest thing to svn export that I'm aware of is using git archive, then extracting the result. Like so:

git archive --format=tar --prefix=SomeName HEAD

Then extract the tar.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文