问题标签 [pvcs]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
1933 浏览

version-control - 如何在 PVCS 中添加包含源文件的目录

我正在使用 PVCS 版本管理器。我有一个本地目录帽子需要按原样添加到 PVCS。我看到的唯一选项是“添加工作文件”,它只允许添加文件,但看不到添加文件夹/目录本身的选项。

0 投票
1 回答
1591 浏览

git - PVCS checked out files to GIT

I am trying to get files in PVCS to GIT repository , as I found out there seems to be no easy way to doing this

I have revision like so

File.cbs_rev_1

File.cbs_rev_1_0_2 excetra...

can I get all files along with their revision/version into GIT ??

0 投票
1 回答
843 浏览

git - Moving projects from PVCS into Git

My firm is looking to move projects from PVCS to git but the firm wants all the history, can this be done?

0 投票
3 回答
5487 浏览

command-line-interface - Serena Dimensions 命令行 (dmcli) 文档

有没有人有 Serena Dimensions 命令行 (dmcli) 文档 PDF?

要从 Serena 网站获得一个,我需要一个序列号,为此我必须提出组织级别的请求。因此,如果有人可以向我提供文档,将会很有帮助。

0 投票
1 回答
4330 浏览

svn - 将 pvcs 迁移到 svn 的步骤

请提供从 pvcs 迁移到 svn 的步骤。我搜索了开源工具并找到了polarion pvcs2svn 工具。如果有人使用过此软件,请提供所遵循的步骤和使用的 config.properties 文件。我发现很难使用这个软件。即使我没有从这个产品的论坛得到任何帮助。

0 投票
2 回答
494 浏览

c# - Trouble running command from C# and capturing StandardOutput

I'm trying to run the command line utility PCLI.exe from C# and having no luck. I'm constructing a ProcessStartInfo object and have set process.StartInfo.RedirectStandardOutput = true, but when I try to read process.StandardOutput I get the following error:

Message=StandardOut has not been redirected or the process hasn't started yet.

I even tried just piping the output of my command to output.txt, and while the file gets created it's empty.

The process completes but doesn't really execute the intended file, so I'm trying to capture StandardOutput to see what's going on. Just for background purposes I'm trying to run a PVCS get command to get a file out of PVCS.

Here's a snippet of my code:

0 投票
1 回答
459 浏览

git - 包含数万或数十万次提交的 GIT 存储库是否太大?

我的任务是将整个 PVCS 存储库迁移到 git,包括所有历史记录。我想出的唯一方法是运行 PVCS VLOG 命令以将修订历史记录(所有文件)提取到文件中,然后解析该文件(使用 C# 程序)以获取修订列表对于每个文件。然后逐个修订,我从 PVCS 获取文件的给定修订,将文件添加到 GIT 并执行 COMMIT。因此,对于大约 14,000 个文件中的每一个,我都会对文件的每个修订版进行提交(每个文件可能有 1-100 多个修订版)。我疯狂地认为这会奏效吗?是否会有太多的提交使 repo 变得太大和笨重?

感谢您对此的任何帮助!

0 投票
1 回答
836 浏览

repository - 如何从 PVCS 导出修订历史?

我继承了安装了 PVCS 版本管理器的旧服务器。我已经尝试过“获取”,但它只导出最新的更改。有没有办法从 Serena 导出修订历史记录?

0 投票
1 回答
1606 浏览

svn - 将源代码从 PVCS 迁移到 SVN

我正在尝试将源代码从 PVCS 迁移到 Git。

在搜索的过程中,我发现 PVCS 可以先迁移到 SVN,然后再迁移到 Gitwith this link的帮助。

因为,我们在 PVCS 有很多项目。我们希望一次转储所有项目,而不是单个项目转储。

有没有其他方法可以将 PVCS 中的所有多个项目转储到(SVN 或 GIT 存储库),而不是为每个项目重复相同的操作?

0 投票
2 回答
138 浏览

git - GIT 注释替换和注入

GIT 可以在代码签入时进行注入/令牌替换吗?

PVCS 通过注入/代币替换价值为公司 XYZ 做了一些事情。一个例子:

如果我们有如下代码:

PVCS 会将其变为以下内容,黄色突出显示将是文件的更新,绿色突出显示是我的评论。

如果可以,我们可以这样做吗?我们需要进行哪些更改以确保我们可以在所有源代码库中始终如一地做到这一点?