Questions tagged [rcs]

RCS is a revision control system allowing teams to share and update code cooperatively and review and resolve version conflicts. /!\ This tag is *NOT* to be used for questions related to the communication protocol "Rich Communication Services", use [rich-comm-service] instead.

RCS is a revision control system allowing programmers to log updates to files and to review and resolve version conflicts. RCS allows a person to determine exactly which lines changed on newer revisions, and to revert some or all of the changes if necessary. It functions by keeping change data about the source code files that the programmer or programmers are manipulating.

Having been created in the early 1980s, support for RCS has waned in favor of tools like CVS and Subversion (SVN) and, to a larger extent, distributed revision systems such as Git and Mercurial (hg). A comparison of similar systems is available as well. A current development environment featuring support for RCS is Emacs.

RCS is a GNU project. The sources are available here, and are maintained in a Git repository.

78 questions
1
vote
1 answer

Ident tool alternative in SVN property

We had already used "Ident" tool in CVS via RCS keywords to get some info like "ID" and "DATE" from our source codes. We could simply do that by inserting keywords $Id$ and $Date$ into the text file, and the nice thing was when we compiled the…
Masood
  • 685
  • 2
  • 8
  • 16
1
vote
3 answers

Updating files with a Perforce trigger before submit

I understand that this question has, in essence, already been asked, but that question did not have an unequivocal answer, so please bear with me. Background: In my company, we use Perforce submission numbers as part of our versioning. Regardless…
phantom-99w
  • 928
  • 1
  • 11
  • 22
1
vote
2 answers

RCS using multiple files for checkin or checkout

I would like to know if there is any way to commit multiple files together in RCS. When i say together, it means that I have done my changes to multiple files but they are to be included in the same commit. I know that the checkin command is: ci -u…
ha9u63a7
  • 6,233
  • 16
  • 73
  • 108
1
vote
4 answers

Trying to use the unix command 'find' to find all files checked into RCS

I am trying to use the find command to find all of the files that are checked into RCS from my home directory. This includes files that end in things like c,v. When I run the commands such as find . -name \*v find . -name \*c,v this is close to…
1
vote
2 answers

Howto create bzr repo which consist of many project

I have big project which consist of many smaller projects, files, packages, iso's, etc. and I'd like to keep these files in some control system perhaps Bazaar. The problem is some of projects are already under git or bazaar. I need not to change…
marcinpz
  • 675
  • 7
  • 15
1
vote
2 answers

Advice on the structure of my repository

I am an applied mathematician and I have recently joined a project that involves the development of production code for our scientific application. The code base is not small and it's deployed as part of a web application. When I joined, the code…
foglerit
  • 7,792
  • 8
  • 44
  • 64
1
vote
2 answers

Script to adjust history in an RCS/CVS ,v file

In preparation for a migration to Mercurial, I would like to make some systematic changes to many thousands of ,v files. (I'll be editing copies of the originals, I hasten to add.) Examples of the sorts of changes I'm after: For each revision whose…
Clare Macrae
  • 3,670
  • 2
  • 31
  • 45
0
votes
0 answers

how check for the functional form of continuous covariates competing risks model using Restricted cubic splines in R

I have successfully fitted a competing risks model using Fine and Gray model (Melanoma data) but now the challenge is how to check for non-linear effects of continuous covariates(such as age) using Restricted cubic spline function in R an R code on…
0
votes
0 answers

How do I use dumpbin to look for RCS keywords on a DLL file?

In my code, I add some RCS keywords, like "$Header$", "$Author$", etc., and compile it to DLL file Is there anyway I could look inside the DLL for these RCS keywords using "dumpbin" function from VS studio 2012? OR There is better solution, that I…
ROBO_P
  • 43
  • 4
0
votes
0 answers

Generate keys in openssl using subprocess to open prompt in a python script

I need to create a python script to open the prompt, open openssl and launch the command to generate the public and private keys. follows the command I use to generate the keys manually by opening the windows command prompt: openssl > req -x509…
0
votes
0 answers

strange `$Id` value added in linux source files

I've been working with linux-5.4.21 for some time and while updating the changed files to our local git repository I found some source files have some changes that I hadn't made. It's like this. In drivers/edac/e7xxx_edac.c (compare the lines with…
Chan Kim
  • 5,177
  • 12
  • 57
  • 112
0
votes
1 answer

Yacc generated C file sccsid warning supression

I am working on a legacy project that uses yacc - 1.9 20130304. The generated .c files contain the sccsid string (from the skeleton.c): #ifndef lint static const char sccsid[] = "@(#)yaccpar 1.9 (Berkeley) 02/21/93"; #endif When…
0
votes
1 answer

Does Eclipse have an option for personal version control of local workspaces?

Does Eclipse have an option for personal version control of local workspaces? Like a version control plugin that I can get through the auto-update that doesn't require installation anything additional?
djangofan
  • 28,471
  • 61
  • 196
  • 289
0
votes
1 answer

Locating or compiling latest GNU RCS (5.10) on Windows 10

I have been using RCS on Windows since a long time. The latest available version ported to Windows is 5.7 by Purdue University or ezwinports. I would prefer to stay with RCS since I have a number of scripts using it, and I am satisfied with its…
gsl
  • 1,063
  • 1
  • 16
  • 27
0
votes
0 answers

merge with rcsmerge - how

I spent some time learning RCS, wearing my unix tool archeologist hat. I encountered a weird behavior wrt rcsmerge. I've googled rcsmerge, I Read The FM, etc, but found no explanation to this behavior below. I'd expect to see all three letters a b…
grault
  • 55
  • 5