Yes, defunct just the directory and promote. You do not defunct its content. If you do, you will strand all those files once the root level directory is promoted....
Yes, you can create a snapshot of a parent, i.e. the new structure would be PARENT-->SNAPSHOT-->CURRENT-->CHILD. When the snapshot is active, it is blocking any changes to flow down. That means, anything you promote to PARENT will remain in PARENT and will not flow down to CURRENT.
In order to force populate the file you have to do the above command but also give the fully qualified path to the file. D:MyWorkSpace\ accurev pop -O -R .\subdir\thefile.cs...
You will need to create a script to obtain this info. Basically you will run the command: accurev show -p -fxg -s "Stream Name" -R streams You will parse this list looking for "hasDefaultGroup="true"". For each stream that matches, execute the 'accurev stat -d -s' command....
ruby-on-rails,capistrano,capistrano3,accurev
As Capistrano3 documentation says - there is only git, hg and svn support. But it should not be so hard to port old accurev module from Capistrano 2 to Capistrano 3. Some classes changed but core is same - functions have to return proper commands with proper parameters. You can...
command-line-interface,accurev
Purge Get a list of all the overlap files. Run the command "accurev stat -o -ffl > list.txt" Then run the command "accurev purge -l list.txt"...
You need to purge the active files in this workspace. Open the workspace and click on the "Default Group" filter -> select the files -> right click -> revert to backed. If no files appear in the "Default Group" filter, click on the stranded filter and do the same as...
By default anyone can change the time basis, rename a stream, apply locks, etc..to streams. The only way to prevent these operations from occurring is thorough the server_admin_trig. If you have enabled this trigger to block users from performing these acts, then I suggest you create a group, add whoever...
Yes, you will need to enable a pre-create-trigger using the elem_type.pl script found in "accurev install dir/examples" on your server. Inside the elem_type file, you will see the directions for setting this trigger. Yes, run the following command to generate a list of all the files in your workspace....
This works nicely: accurev hist -p <depot> -s <stream> -a -fv | sed -n 's/.*user: \(.*\)/\1/p' | sort | uniq ...
You can do this a few ways. By file: For each file you want, in your workspace, select the file -> open the "version browser" -> select the version of the file from the other workspace -> right click -> You can either "Send to Workspace", Patch or Merge. By...
Look at the command 'accurev archive'. This will remove the data containers which will prevent someone from viewing the file....