I am new to svn, however I am at present making the transition of some Perl scripts from ClearCase. I know that Clearcase have dynamic views, so it can access one or more derived objects (DOs) from a dynamic view, or convert a nonshareable derived object to a shareable (promoted) derived object by the cleartool command winkin
. How do I replace it with an equivalent svn command, knowing that svn is static.
相关问题
- $ENV{$variable} in perl
- How can I set the SVN password with Emacs 23.1 bui
- Is it possible to pass command-line arguments to @
- How to restrict VOB read access in ClearCase (Wind
- Redirecting STDOUT and STDERR to a file, except fo
相关文章
- Running a perl script on windows without extension
- Comparing speed of non-matching regexp
- Is there a version control system abstraction for
- Intermittent “SVNException: svn: E175002: Connecti
- Can NOT List directory including space using Perl
- IntelliJ Subversion Authentication Required Dialog
- TortoiseHG and hgsubversion (Windows): “no module
- Extracting columns from text file using Perl one-l
You don't: Those notion of derived object are very specific to ClearCase dynamic view.
cleartool winkin
accesses the data of any existing DO, and a DO does not exist in Subversion.That is similar to "Is there a git equivalent to
cleartool catcr
": gcc (meaning the tool using the sources to compile) might have some information, but the source control tool itself (Subversion) won't have any.This has nothing to do with SVN or git.
A third-party tool (OmpenMake, graddle or Bazel (see "e") would be needed here.
There is no notion of dynamic view in any other tool but ClearCase.
That depends on the language and build mechanism you will chose, and not on SVN.
With a modern language like go (golang), you wouldn't be concerned anymore by the list of files built: only the one with changes would be recompiled.