<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>blog ViolentCoding &#187; SVN</title>
	<atom:link href="http://violentcoding.com/blog/tag/svn/feed" rel="self" type="application/rss+xml" />
	<link>http://violentcoding.com/blog</link>
	<description>for more violent coder</description>
	<lastBuildDate>Tue, 18 Aug 2009 06:11:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>[Mac]Leopard に入っているSVNでリポジトリ作成</title>
		<link>http://violentcoding.com/blog/2008/04/17/archives/116</link>
		<comments>http://violentcoding.com/blog/2008/04/17/archives/116#comments</comments>
		<pubDate>Wed, 16 Apr 2008 16:36:38 +0000</pubDate>
		<dc:creator>e_s_jp</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://violentcoding.com/blog/2008/04/17/archives/116</guid>
		<description><![CDATA[さて、リポジトリを作ってみるか。ということで、

[Mac]Leopard に入っているSubversion確認
http://violentcoding.com/blog/2008/04/16/archives/115 [...]]]></description>
			<content:encoded><![CDATA[<p>さて、リポジトリを作ってみるか。ということで、</p>
<blockquote><p>
<strong>[Mac]Leopard に入っているSubversion確認</strong><br />
<a href="http://violentcoding.com/blog/2008/04/16/archives/115">http://violentcoding.com/blog/2008/04/16/archives/115</a>
</p></blockquote>
<p>の続き。
</p>
<p>&nbsp;</p>
<p>
ホームの「書類」に「test」フォルダを作っておいて、myRepositoryというリポジトリでも作ってみる。<br />
svnadmin の create でリポジトリとなるディレクトリのパスを指定してやる。</p>
<pre>
$ svnadmin create Documents/test/myRepository
</pre>
<p>はい、終了。
</p>
<p>&nbsp;</p>
<p>
これだけじゃ寂しいので、ちゃんとできてるか svn の checkout で確認してやる。<br />
さっき作ったリポジトリをURLで書いてあげて・・・</p>
<pre>
$ svn co file://localhost/Users/violentcoding/Documents/test/myRepository
</pre>
</p>
<p>&nbsp;</p>
<p>
どうかな？</p>
<pre>
Checked out revision 0.
</pre>
<p>うん、OK。</p>
]]></content:encoded>
			<wfw:commentRss>http://violentcoding.com/blog/2008/04/17/archives/116/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Mac]Leopard に入っているSubversion確認</title>
		<link>http://violentcoding.com/blog/2008/04/16/archives/115</link>
		<comments>http://violentcoding.com/blog/2008/04/16/archives/115#comments</comments>
		<pubDate>Tue, 15 Apr 2008 17:59:47 +0000</pubDate>
		<dc:creator>e_s_jp</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://violentcoding.com/blog/2008/04/16/archives/115</guid>
		<description><![CDATA[そういえば、Leopardに標準で入っているという噂のSubversionを全く見ていなかったので、まずは確認。

ターミナルで

$ svn --version



おぉ、いましたね！

svn, version 1.4.4 (r25188)
   compiled Sep 23 2007, 22:32:34

Copyright (C) 2000-2006 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).

The following repository access (RA) modules are available:

* ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol.
  - handles 'http' scheme
  - handles [...]]]></description>
			<content:encoded><![CDATA[<p>そういえば、Leopardに標準で入っているという噂の<a href="http://subversion.tigris.org/">Subversion</a>を全く見ていなかったので、まずは確認。</p>
<p>
ターミナルで</p>
<pre>
$ svn --version
</pre>
</p>
<p>
おぉ、いましたね！</p>
<pre>
svn, version 1.4.4 (r25188)
   compiled Sep 23 2007, 22:32:34

Copyright (C) 2000-2006 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).

The following repository access (RA) modules are available:

* ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol.
  - handles 'http' scheme
  - handles 'https' scheme
* ra_svn : Module for accessing a repository using the svn network protocol.
  - handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
  - handles 'file' scheme
</pre>
</p>
<p>
よし、ヘルプを。</p>
<pre>
$ svn help
</pre>
</p>
<p>
でました。</p>
<pre>
usage: svn &lt;subcommand&gt; [options] [args]
Subversion command-line client, version 1.4.4.
Type 'svn help &lt;subcommand&gt;' for help on a specific subcommand.
Type 'svn --version' to see the program version and RA modules
  or 'svn --version --quiet' to see just the version number.

Most subcommands take file and/or directory arguments, recursing
on the directories.  If no arguments are supplied to such a
command, it recurses on the current directory (inclusive) by default.

Available subcommands:
   add
   blame (praise, annotate, ann)
   cat
   checkout (co)
   cleanup
   commit (ci)
   copy (cp)
   delete (del, remove, rm)
   diff (di)
   export
   help (?, h)
   import
   info
   list (ls)
   lock
   log
   merge
   mkdir
   move (mv, rename, ren)
   propdel (pdel, pd)
   propedit (pedit, pe)
   propget (pget, pg)
   proplist (plist, pl)
   propset (pset, ps)
   resolved
   revert
   status (stat, st)
   switch (sw)
   unlock
   update (up)

Subversion is a tool for version control.
For additional information, see http://subversion.tigris.org/
</pre>
</p>
<p>&nbsp;</p>
<p>
じゃあ、svnadmin。</p>
<pre>
$ svnadmin --version
</pre>
</p>
<p>
うんうん。</p>
<pre>
svnadmin, version 1.4.4 (r25188)
   compiled Sep 23 2007, 22:32:34

Copyright (C) 2000-2006 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).

The following repository back-end (FS) modules are available:

* fs_fs : Module for working with a plain file (FSFS) repository.
</pre>
</p>
<p>
で、ヘルプ。</p>
<pre>
$ svnadmin help
</pre>
</p>
<p>
どーん！</p>
<pre>
general usage: svnadmin SUBCOMMAND REPOS_PATH  [ARGS &#038; OPTIONS ...]
Type 'svnadmin help &lt;subcommand&gt;' for help on a specific subcommand.
Type 'svnadmin --version' to see the program version and FS modules.

Available subcommands:
   crashtest
   create
   deltify
   dump
   help (?, h)
   hotcopy
   list-dblogs
   list-unused-dblogs
   load
   lslocks
   lstxns
   recover
   rmlocks
   rmtxns
   setlog
   verify
</pre>
</p>
<p>さて、リポジトリを作ってみるか</p>
]]></content:encoded>
			<wfw:commentRss>http://violentcoding.com/blog/2008/04/16/archives/115/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

