5 Minutes Guide To Subversion 5分のガイドを破壊
Subversion is a free open source source code management system (SCM) like CVS, Perforce, ClearCase etc. In this simple 5 minutes guide you will know about some key commands to quickly get started with subversion from ground zero. Subversionは、無料のオープンソースのソースコード管理システム( SCM )のようなCVSのは、必然的に、この単純な5分ClearCaseのガイドなどを知っていくつかの主要なコマンドを迅速に開始するにはSubversionのグラウンドゼロからです。 You may want to print a copy for quick reference.したいことがありますコピーを印刷するためのクイックリファレンスです。
How to create a subversion project? Subversionのプロジェクトを作成する方法についてですか?
You need to be on the same machine as the repository and know the location of the repository.する必要があります同じマシン上でリポジトリとしての場所を知っていると、リポジトリのです。 Then execute the following command:次のコマンドを実行します:
svnadmin create /repository/project_name –fs-type fsfs てください。 svnadmin create /リポジトリ/のproject_name -のFS -タイプのにFSFS
How to checkout project / directory / file(s) from subversion? プロジェクトをチェックアウトする方法について/ディレクトリ/ファイル(秒)よりSubversionのですか?
svn checkout http://repository_host_name/path/project_name [project_name] svnレジにhttp://repository_host_name/path/project_name [のproject_name ]
Notes:備考:
In the optional second parameter you can specify the directory to download to.で、オプションの2番目のパラメータをダウンロードするディレクトリを指定することができます。
You can specify a directory or even single files using this command.ディレクトリを指定することができますまたは1つのファイルを使用しても、このコマンドを実行します。
How to update your copy with the latest source code from repository? コピーする方法を更新してから、最新のソースコードのリポジトリですか?
svn update project_name svnの更新のproject_name
Notes:備考:
You do not have to specify the url of the repository because the information is already stored in the directory which was create during checkout (see above).を行う必要はありませんのURLを指定して、リポジトリのための情報が既にディレクトリに格納されてレジには、作成中(上記参照) 。
On linux systems you may be prompted for a password. Linuxシステム上、パスワードの入力を要求されることがあります。
How to commit changes to the repository? 変更をコミットする方法についてはリポジトリのですか?
To commit any changes to the repository you must specify a comment (hopefully) describing the changes.すべての変更をコミットをリポジトリに反映するコメントを指定する必要があります(願わくは)を記述する変更を適用します。
svn commit -m message svnコミット-メートルメッセージが表示さ
Notes:備考:
This commits all the changed files to the repository.このコミットのすべての変更されたファイルをリポジトリに反映する。
The comment should be enclosed in double-quotes ( " )コメントの二重引用符で囲んですべきである( " )
How to get status of a subversion projects? どのようにプロジェクトのステータスを取得するSubversionのですか?
svn stat project_name svnの合計のproject_name
If you want to get detailed status of your project then use:詳細を取得する場合は、プロジェクトのステータスを確認してください:
svn stat –verbose svnの合計-冗長
How to add files to a project? どのようにファイルを追加するプロジェクトですか?
svn add file_name FILE_NAMEのsvnを追加
Then you must commit to propagate the changes to the subversion server.を入力し、コミットする必要があります。 Subversionのサーバーへの変更を伝達します。
How can you rename a file in subversion? 名前を変更するにはどうすればファイルを破壊するか?
svn rename old_file_name new_file_name svn old_file_name new_file_nameの名前を変更する
Again you must commit to propagate the changes to the subversion server.再びコミットをする必要があります。 Subversionのサーバーへの変更を伝達します。
With these simple commands you can effectively use subversion for most purposes.これらの簡単なコマンドを効果的に使用することができます。 Subversionのほとんどの目的です。
Note: These documents have been adapted from our internal documentation wiki which has been contributed by several persons.注:これらのドキュメントが適応より、当社の内部ドキュメンテーションwikiに貢献されてきた数人です。
Filed under提出されて Headline Newsニュースの見出し , 、 How Toどのように , 、 Linuxリナックス , 、 Open Source Softwareオープンソースのソフトウェア , 、 Tech Note技術のノート , 、 Technology技術 , 、 Windows Windowsの | |
| |
RSS 2.0 RSS 2.0を | |
Trackbackトラックバック this Article |この記事|
Email this Article電子メールこの記事
You may also like to readを読むようにすることも可能 |





April 11th, 2008 at 12:20 pm 2008年4月11日は12:20 pmの
Nice article.ニースサポートします。 It didn’t took me more than five minutes to learn about SVN.私ていないが5分以上の詳細についてはsvnします。