gc-utils

gc-utils is a small set of scripts that let you import and update CVS repositories.
Download

gc-utils Ranking & Summary

Advertisement

  • Rating:
  • License:
  • GPL
  • Price:
  • FREE
  • Publisher Name:
  • David Soria Parra
  • Publisher web site:

gc-utils Tags


gc-utils Description

gc-utils is a small set of scripts that let you import and update CVS repositories. gc-utils package contains a small set of scripts that let you import and update CVS repositories into git very easy and let you export patches back into a CVS working copy.To makes the exchange easy, gc-utils stores the CVS working copy into a subdirectory and receives all information from there whenever necessary.1. How to install gc-utilsExtract the *.tar.gz. $ tar xzvf gc-utils.tar.gzSwitch into the directory and make install using a prefix (usually /usr) $ make prefix=/usr Then install as root $ sudo make prefix=/usr installYou can now use the gc-import, gc-update and gc-commit commands as well as the corresponding manpages.2. How to use gc-utils 2.1 Import from a CVS To import from a cvs tell gc-import where to fetch from and what to fetch $ gc-import -d myproj.git -v -m -u :ext:foo@example.com:/cvsroot myproject Will create a git repository in myproj.git and import the myproject module from the example.com/cvsroot cvs. The -v options turns on verbosity, while -m tries to merge commits based on commit messages. This is usually usefull. The -u options converts cvs tags with underscores into git tags with dots. e.g. FOO_1_0 will be FOO.1.0. 2.2 Keep you git up to date You usually want to keep your git repository up to date with the changes made in the cvs. To do so, go into you git repository and run gc-update. $ cd myproj.git $ gc-update This command will do all the necesary steps. Please notice that this works only with projects previously imported using gc-import. 2.3 Commit changes back to cvs You imported the cvs repos into a git repository and you made some changes on your personal git and want to contribute back into cvs. Therefore you need the SHA1 identifiers of the commits you did in your git. Just run git-log to see the sha1. $ cd myproj.git // edit foo.c and commit $ git-log // foo.c commited was commit feca43...... $ gc-commit -c feca43 The -c option will cause gc-commit to do the actual commit into cvs. Without that ption gc-commit just patches the cvs and echos the command you have to execute to commit.3. How gc-utils deal with your repositorygc-utils creates a git repository and then imports the cvs into a .cvs directory in the git repository. Therefore it knows always where the.cvs working copy resides and can easily use the git-cvs* tools to do the job of commiting and updating.What's New in This Release:· This release uses dashless git commands, as the other versions are not longer supported in newer git versions.


gc-utils Related Software