Menu
  • HOME
  • TAGS

Accurev: easy way to defunct entire directory tree

directory,accurev,defunct

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

Choose different versions for different files in Accurev

version-control,accurev

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.

Accurev Workspace broken

accurev

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

How to know in Accurev that element is modified on other streams

accurev

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

How can I continue to use Accurev with Capistrano 3?

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

accurev command revert to basis

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"...

Accurev: Cannot remove workspace/stream

accurev

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

How to allow users to change my Accurev stream

accurev

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

Accurev binaries and recursive keep

recursion,binary,accurev

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

Accurev: How can I get a list of all users from a stream?

accurev

This works nicely: accurev hist -p <depot> -s <stream> -a -fv | sed -n 's/.*user: \(.*\)/\1/p' | sort | uniq ...

How to get the changes from other person's workspace in Accurev?

accurev

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

Accurev delete a file that has been kept/promoted or scrub contents from all versions

accurev

Look at the command 'accurev archive'. This will remove the data containers which will prevent someone from viewing the file....