0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

今更ながらcvsのコマンドをgitと比較しながら書いてみる

Last updated at Posted at 2019-05-22

初投稿です。

会社のバージョン管理でcvsを使っているのでgitと比較しながら備忘録として書いてみる。

cvs checkout -r branch名 リポジトリ名

checkoutというのは、サーバーに保存してあるブランチを自分の物理環境に持ってくること。-rは再帰のオプションなのでbranchにあるファイルを再帰検索して持ってきてるってこと。リポジトリは保管庫のこと。ちなみにcheckoutはcoって簡略化できる。

gitで同じようにサーバーから物理環境へ持ってくるコマンドは

git clone サーバーURL

みたいなのと似てる。

cvs update ファイル群

updateは物理環境のソースコードを最新の状態に更新してくれる。また、

cvs update -j ファイル群

ってやるとトランクにファイル群の差分をマージできる。さらに

cvs update -j タグ名1 -j タグ名2

ってやるとタグ名1からタグ名2までの差分をマージできる。

もう眠いのでとりあえずこの辺で。
ちゃんと書けるように努力します。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?