Concurrent Version System



概要

Serverwiki.wivicom.co.jp
Repository/share/cvsroot or /home/cvsroot
CVS_RSHssh
CVSROOT:ext:wiki.wivicom.co.jp:/share/cvsroot

CVS import

importしたいdirの中に入って,余分なファイルを削除した後

% cvs import module_name vender_name tag

binary fileの混じったmoduleの登録(hoge.romがbinary fileの場合)

% cvs import -W "*.rom -k'b'" -m "comment" module_name vender_name tag

CVS checkout

% cvs co module_name

CVS commit

% cd hoge
% cvs ci -m "pon"

CVS update

% cd hoge
% cvs update

CVS export

% cvs export -D tomorrow hoge
(これをtarでかためて、 package のできあがり)
% tar cvzf hoge.tar.gz hoge

CVS tag

tagをつける

% cvs tag "tag_name"

tagをとる

% cvs tag -d "tag_name"

branchで作業

branch作成

% cvs tag -b branch_name

branchの取り出し

% cvs checkout -r branch_name module_name

trunkへbranchをmerge

[@trunk]% cvs update -j branch_name

branchへtrunkをmerge

[@branch]% cvs update -j branch_name -j HEAD

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS