如何在 Eclipse 中更新 CVS/Root

发布于 2024-08-11 07:15:50 字数 144 浏览 4 评论 0原文

基本上,我需要将文件 CVS/Root 中的用户名更改为我有权访问的新用户名,并且每个文件夹都有一个类似的文件。有没有一种简单的方法可以通过 CVS 或其他方法更新所有文件夹?

编辑:顺便说一句,这是在 Windows 中。我对 ms dos 命令不太熟悉。

Basically I need to change the username located in the file CVS/Root to a new one to which I have access and each folder has a file like it. Is there a simple way to do this in such a way all folders get updated through CVS or other methods?

Edit: this is in Windows btw. Im not very familiar with ms dos commands.

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

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

发布评论

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

评论(2

吻泪 2024-08-18 07:15:50

将我的所有文件传输到 Unix 盒子中,并编写一个脚本来查找所有根文件并用 sed 替换所有键

for file in `find . -name "Root"`; do echo $file; sed -i "s/key1/key2/" $file ; done;

Transferred all my files in a Unix box and made a script to look for all Root files and substitute all keys with sed

for file in `find . -name "Root"`; do echo $file; sed -i "s/key1/key2/" $file ; done;
絕版丫頭 2024-08-18 07:15:50

您应该能够通过使用您有权访问的用户再次检查代码来完成此操作。如果您对代码进行了更改,请将其复制到新结帐的顶部。

不建议编辑 CVS 元数据。

You should be able to do this just by checking out the code again using the user you have access to. If you have made changes in the code copy them over the top of the fresh checkout.

It is not recommended to edit the CVS metadata.

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