“svn cat”的水银等价物是什么?
我想以指定的修订版打印远程存储库中单个文件的内容。我怎样才能做到这一点?在 svn 中,它是:
svn cat <path to remote file>
update
我想避免的主要事情是克隆整个存储库;我正在使用的一些项目非常大,我只需要其中单个文件中的项目元数据。
I want to print the contents of a single file from a remote repository, at a specified revision. How can I do that? In svn, it'd be:
svn cat <path to remote file>
update
The main thing I want to avoid is cloning the entire repository; some of the ones I'm working with are quite large, and I just need project metadata from a single file within.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有两种方法可以实现您想要的操作:
hg cat -r REV FILE
如果您没有) Web界面,然后你需要克隆。
There's two ways to do what you want:
hg cat -r REV FILE
against itIf you don't have the web interface, then you need to clone.
您可以使用
wget
或您喜欢的浏览器下载文件内容。例如,对于 bitbucket 存储库,URL 如下所示:对于
hgserve
Web 界面,URL 如下所示:You may be able to download the file content with
wget
or your favorite browser. For example, for bitbucket repositories the URL looks like this:For the
hg serve
web interface, the URL looks like this: