CVS:搜索特定日期提交的文件

发布于 2024-10-09 09:22:40 字数 99 浏览 0 评论 0 原文

我是否可以搜索特定日期提交的 CVS 文件列表?

我目前正在使用 opensuse 和 cvs 命令行,并且还使用 Eclipse IDE 来处理我的 Java 内容。

Is there anyway i can search for a list of committed CVS files on a specific date ?

Im currently using opensuse with cvs command line, and also with Eclipse IDE for my Java stuffs.

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

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

发布评论

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

评论(2

半岛未凉 2024-10-16 09:22:40

您可以使用 Eclipse CVS ChangeLog 插件

http://code.google.com/a /eclipselabs.org/p/changelog/

You can use Eclipse CVS ChangeLog Plugin

http://code.google.com/a/eclipselabs.org/p/changelog/

归途 2024-10-16 09:22:40

CVS 使用 RCS 作为后端。因此,您可以通过 CVS 工作,或直接通过存储库文件上的 RCS 工作...

来自 ma​​n cvs

<块引用>

日志选项

-d 日期
打印有关修订的信息,其签入日期/时间在分号分隔的日期列表给定的范围内。接受的日期格式是许多其他 cvs 命令的 -D 选项接受的日期格式(请参阅 CVS 手册中的“常用选项”节点)。

日期可以组合成范围,如下所示:

d1

d2>d1

选择 d1 和 d2 之间提交的修订。

d>

选择日期为 d 或更早的所有修订。

d

>d

选择 d 或之后的所有修订版。

选择日期为 d 或更早的单个最新修订版。

<>或<字符后面可以跟 = 来指示包含范围而不是排除范围。

请注意,分隔符是分号 (;)。

ma​​n rcs 页面类似......

所以,你知道,尝试:

% cvs log -d '2007/01/01<2008/07/07' .

CVS uses RCS for the backend. So you can work through CVS, or directly through RCS on the repository files...

From man cvs:

log options

-d dates
Print information about revisions with a checkin date/time in the range given by the semicolon-separated list of dates. The date formats accepted are those accepted by the -D option to many other cvs commands (see node ‘Common options' in the CVS manual).

Dates can be combined into ranges as follows:

d1<d2

d2>d1

Select the revisions that were deposited between d1 and d2.

<d

d>

Select all revisions dated d or earlier.

d<

>d

Select all revisions dated d or later.

d

Select the single, latest revision dated d or earlier.

The > or < characters may be followed by = to indicate an inclusive range rather than an exclusive one.

Note that the separator is a semicolon (;).

And similarly from the man rcs page...

So, you know, try:

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