Cleartool lsco -avo -cview 在 SVN 上等效 [英] Cleartool lsco -avo -cview equivalent on SVN

查看:28
本文介绍了Cleartool lsco -avo -cview 在 SVN 上等效的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

SVN 上与 cleartool lsco -avo -cview -me 等效的命令是什么?

What is the equivalent command on SVN as cleartool lsco -avo -cview -me?

谢谢!

推荐答案

简单的 svn status 我相信.

cleartool lsco -avo -cview -me

用于列出当前用户 (-me) 在当前视图 (-cview) 中所有当前检出的文件 (lsco)>)

Is for listing all currently checked out files (lsco) in the current view (-cview), by the current user (-me)

如果您要在 svn 工作区(相当于 ClearCase 快照视图)中执行 svn status,您也将获得当前修改的文件.
请参阅svn 本地副本中修改的文件列表" 用于其他选项.
例如,在 Windows 上:

If you were to do an svn status in an svn workspace (which is the equivalent of a ClearCase snapshot view), you would get the current modified files as well.
See "svn list of files that are modified in local copy" for other options.
For instance, on Windows:

svn status -u | grep '^M'

(有关 -u 选项的更多信息,请参阅什么 svn 命令会列出分支上修改的所有文件?")

(for more on the -u option, see "What svn command would list all the files modified on a branch?")

OP Beyonddc 具有该命令的更高级版本:

The OP beyonddc has a more advanced version of that command:

find . -maxdepth 1 -type d -exec bash -c "cd '{}' && svn status | grep '^M'" \;

这篇关于Cleartool lsco -avo -cview 在 SVN 上等效的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆