Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is RCS in Xcode 5.0.1 OS X 10.9

The RCS, like ci, co, rlog, etc. can find in Xcode 5.0(with command line developer tool) in mountain lion, but disappear in mavericks with xcode 5.0.1(with command line developer tool).

Is apple abandoned the simple version control tool?

like image 221
LiuGN Avatar asked Oct 26 '13 07:10

LiuGN


3 Answers

From Xcode release notes:

The CVS and RCS source control tools have been removed from Xcode 5. 11968433

like image 67
NPE Avatar answered Sep 25 '22 16:09

NPE


Here's what I did:

  1. Used a time machine backup to restore ci, co, rcs, rcsclean, *rcsdiff, rcsmerge, and rlog* to my directory ~/bin/rcs

  2. Unfortunately, the system needs to find them in /usr/bin. I did not want to add new files to that directory. So I reluctantly (via terminal and sudo) typed

  3. ln -s ~/bin/rcs/* /usr/bin

like image 32
David E. Avatar answered Sep 25 '22 16:09

David E.


If you don't want to recompile from source, Rudix is probably the simplest way to install RCS.

The latest version installs in /usr/local/bin and run well in Mavericks. You might want to symlink it in /usr/bin afterward.

like image 29
Barijaona Avatar answered Sep 25 '22 16:09

Barijaona