2

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 ??

4

1 回答 1

0

本文所述,请确保您的 PVCS 存储库对于 git 存储库来说不会太大。

将 PVCS 转换视为仅将文件及其修订历史记录到 Git 或 Subversion 是错误的。移动历史、更新脚本、培训和最佳实践方法的要求应经过深思熟虑,以适应您的特定转换需求和受变更影响的开发人员的需求。

我不会尝试获取每个文件的所有历史记录,而是:

  • 检查 PVCS repo 是否包含标签(如在这个问题中),
  • 在其本地工作区中显示每个标签
  • 将其作为 git repo 中的单个修订版导入(使用 git-work-tree 提示,如本答案所示)。
于 2013-10-20T09:49:51.177 回答