Sponsored Content
Top Forums UNIX for Advanced & Expert Users CVS: move part of repository (branch) to SVN server Post 302211169 by vgriggs on Wednesday 2nd of July 2008 06:07:56 PM
Old 07-02-2008
cvs2svn

You should take a look at a project called cvs2svn. Here you will find a utility for SVN conversion from CVS (as the name indicates), and there is a section in the user manual that offers suggestions for "Deciding How Much to Convert". They offer pros/cons and advice on how to proceed for various options. Take a look: cvs2svn: cvs2svn Documentation
 

10 More Discussions You Might Find Interesting

1. Solaris

backup repository in cvs

dears does any one know how can i take backup for reposirory in cvs ?? (9 Replies)
Discussion started by: murad.jaber
9 Replies

2. Shell Programming and Scripting

Extraction of latest files from cvs repository

Hi everyone.. Anybody having idea to get the latest file from CVS repository through schell scripts. Thanks in advance. Regards shahid Bakshi (4 Replies)
Discussion started by: shahidbakshi
4 Replies

3. Programming

How to create a new file in a CVS repository

I have a coding project that I'm working on, and I'm tracking revisions using CVS. I'm working on a branch (branch1) at version 1.1.2.1. Anyway, I created a new C file in the directory for the project, but I can't commit it. The tutorial I read on CVS said that version numbers will be assigned... (6 Replies)
Discussion started by: Ultrix
6 Replies

4. Shell Programming and Scripting

Find and move files parsed from cvs file

I need help with a bash script. We have a directory of files which need to be renamed and moved to another directory based on filename information in a cvs file. The contents of the cvs file are as follows: A102345,abc123 A102347,dfg475 Where dfg475 is the basename without extension Our... (8 Replies)
Discussion started by: Lloyd Boyette
8 Replies

5. Solaris

How to integrate SVN client to SVN server repository.

Hi, I am new to SVN configuration on Solaris 10.I have installed SVN client version 1.7. bash-3.00# ./svn --version svn, version 1.7.4 (r1295709) compiled Mar 2 2012, 12:59:36 Here my requirement is how to integrate svn client to One of the SVN server repository. My repository... (0 Replies)
Discussion started by: muraliinfy04
0 Replies

6. UNIX for Advanced & Expert Users

Copy files from SVN Server

Hi, We have a SVN server on which the developers upload their source code which is in the form of a .ear file or a folder. We login to the SVN server using our credentials and then go to the directory in which the application is placed and then click on the download link to download the... (6 Replies)
Discussion started by: mohtashims
6 Replies

7. UNIX for Dummies Questions & Answers

Access of Microsoft Team Foundation Server (TFS) repository from Unix Server

Hello, Some of our application team uses Microsoft Team Foundation server (TFS) reposity tool for their .NET projects , I would like to access it form Unix/Linux machine. Please let me know how can access the TFS from unix. Thanks (0 Replies)
Discussion started by: posix
0 Replies

8. Red Hat

CVS repository connecting error in Linux 5.3

Hi Friends, I configured CVS Repository in RHEL 5.3 Server. But connecting the CVS Repository get the error like. # cvs -d:pserver:cvs@localhost:/backup/cvs/cvsrep login Logging in to :pserver:cvs@localhost:2401/backup/cvs/cvsrep CVS password: cvs : connect to :2401 failed: Connection... (0 Replies)
Discussion started by: srinivas814
0 Replies

9. Web Development

Svn repository relocation

Hi, I have a svn setup with multiple code repositories. Recently the filesystem holds the repository got full and i wanted to have to move some code repositories to another filesystem. I copied some of the code repositored using the "mv" command to another filesystem and created a symlink with... (1 Reply)
Discussion started by: arumon
1 Replies

10. UNIX for Advanced & Expert Users

Trying to figure out the CVS repository server.

We have an issue where we are able to check out files from unix however not from windows. On Unix I have the cvs host set to /home/group/CVSROOT but when I try and access the folder from windows I get an exception that the server refuses connection. On unix the CVSROOT is a filer and not the... (0 Replies)
Discussion started by: jjohnson
0 Replies
CVS2BZR(1)							   User Commands							CVS2BZR(1)

NAME
cvs2bzr - convert a cvs repository into a bazaar repository SYNOPSIS
cvs2bzr --options OPTIONFILE DESCRIPTION
cvs2bzr [OPTION...] OUTPUT-OPTION CVS-REPOS-PATH Convert a CVS repository into a Bazaar repository, including history. OPTIONS
Configuration via options file: --options=PATH read the conversion options from PATH. This method allows more flexibility than using command-line options. See documentation for info Output options: --dumpfile=PATH path to which the data should be written --dry-run do not create any output; just print what would happen. Conversion options: --trunk-only convert only trunk commits, not tags nor branches --encoding=ENC encoding for paths and log messages in CVS repos. If option is specified multiple times, encoders are tried in order until one suc- ceeds. See http://docs.python.org/lib/standard-encodings.html for a list of standard Python encodings. --fallback-encoding=ENC If all --encodings fail, use lossy encoding with ENC --retain-conflicting-attic-files if a file appears both in and out of the CVS Attic, then leave the attic version in a SVN directory called "Attic" Symbol handling: --symbol-transform=P:S transform symbol names from P to S, where P and S use Python regexp and reference syntax respectively. P must match the whole sym- bol name --symbol-hints=PATH read symbol conversion hints from PATH --symbol-default=OPT specify how ambiguous symbols are converted. OPT is "heuristic" (default), "strict", "branch", or "tag" --force-branch=REGEXP force symbols matching REGEXP to be branches --force-tag=REGEXP force symbols matching REGEXP to be tags --exclude=REGEXP exclude branches and tags matching REGEXP --keep-trivial-imports do not exclude branches that were only used for a single import (usually these are unneeded) Subversion properties: --username=NAME username for cvs2svn-synthesized commits --auto-props=FILE set file properties from the auto-props section of a file in svn config format --mime-types=FILE specify an apache-style mime.types file for setting svn:mime-type --eol-from-mime-type set svn:eol-style from mime type if known --default-eol=STYLE default svn:eol-style for non-binary files with undetermined mime types. STYLE is "binary" (default), "native", "CRLF", "LF", or "CR" --keywords-off don't set svn:keywords on any files (by default, cvs2svn sets svn:keywords on non-binary files to "Author Date Id Revision") --keep-cvsignore keep .cvsignore files (in addition to creating the analogous svn:ignore properties) --cvs-revnums record CVS revision numbers as file properties Extraction options: --use-cvs use CVS to extract revision contents (slower than --use-rcs but more reliable) (default) --use-rcs use RCS to extract revision contents (faster than --use-cvs but fails in some cases) Environment options: --tmpdir=PATH directory to use for temporary data files (default "cvs2svn-tmp") --co=PATH path to the "co" program (required if --use-rcs) --cvs=PATH path to the "cvs" program (required if --use-cvs) --sort=PATH path to the GNU "sort" program Partial conversions: --pass=PASS execute only specified PASS of conversion -p [START]:[END], --passes=[START]:[END] execute passes START through END, inclusive (PASS, START, and END can be pass names or numbers) Information options: --version print the version number -h, --help print this usage message and exit with success --help-passes list the available passes and their numbers --man write the manpage for this program to standard output -v, --verbose verbose (may be specified twice for debug output) -q, --quiet quiet (may be specified twice for very quiet) --write-symbol-info=PATH write information and statistics about CVS symbols to PATH. --skip-cleanup prevent the deletion of intermediate files --profile profile with 'hotshot' (into file cvs2svn.hotshot) AUTHORS
Manpage was converted for the Debian GNU/Linux system with help2man by Laszlo 'GCS' Boszormenyi <gcs@debian.hu> (but may be used by oth- ers). SEE ALSO
cvs(1), bzr(1) Bazaar August 2009 CVS2BZR(1)
All times are GMT -4. The time now is 04:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy