<?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>.::灵狼天::. &#187; SVN</title>
	<atom:link href="http://icyleaf.com/tag/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://icyleaf.com</link>
	<description>icyleaf&#039;s blog - 心外无理，心外无物，心外无事</description>
	<lastBuildDate>Tue, 13 Dec 2011 02:34:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>初学 git 入门</title>
		<link>http://icyleaf.com/2008/11/new-guy-to-git/</link>
		<comments>http://icyleaf.com/2008/11/new-guy-to-git/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 07:22:02 +0000</pubDate>
		<dc:creator>icyleaf</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://icyleaf.com/?p=436</guid>
		<description><![CDATA[Git 是用于 Linux 内核开发的版本控制工具。与常用的版本控制工具 CVS, Subversion 等不同，它采用了分布式版本库的方式，不必服务器端软件支持，使源代码的发布和交流极其方便。 Git 的速度很快，这对于诸如 Linux kernel 这样的大项目来说自然很重要。 Git 最为出色的是它的合并跟踪（merge tracing）能力。 当前大多数人用的还应该是 SVN 服务，不过上次见到 CNBorn 同学使用 git 做版本控制，其实知道它很早不过没有过多的了解，在我稍微了解之后发现 git 比 svn 更具潜力，可惜对于 PHP 的用户来说还没有多少人开始用 git 甚至我在 PHPChina 的论坛看到有人问 git 的问题，居然有人回答 git 是什么&#8230; 同样 git 支持多平台且对于 Windows &#8230; <a href="http://icyleaf.com/2008/11/new-guy-to-git/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<blockquote><p>Git 是用于 Linux 内核开发的版本控制工具。与常用的版本控制工具 CVS, Subversion 等不同，它采用了分布式版本库的方式，不必服务器端软件支持，使源代码的发布和交流极其方便。 Git 的速度很快，这对于诸如 Linux kernel 这样的大项目来说自然很重要。 Git 最为出色的是它的合并跟踪（merge tracing）能力。</p></blockquote>
<p>当前大多数人用的还应该是 SVN 服务，不过上次见到 <a href="http://blog.donews.com/CNBorn" target="_blank">CNBorn</a> 同学使用 git 做版本控制，其实知道它很早不过没有过多的了解，在我稍微了解之后发现 git 比 svn 更具潜力，可惜对于 PHP 的用户来说还没有多少人开始用 git 甚至我在 PHPChina 的论坛看到有人问 git 的问题，居然有人回答 git 是什么&#8230;</p>
<p>同样 git 支持多平台且对于 Windows 的用户也有 GUI 的管理界面。通过几天的了解是使用稍微掌握了一点入门的东西（以下都是命令行的东西，如果你想学习使用 GUI 的操作请看<a href="http://gitcasts.com/posts/git-on-windows" target="_blank">此讲解视频</a>）；<br />
首先是下载并安装 <a href="http://git-scm.com/download" target="_self">git</a>。接着设置用户标识：</p>
<pre lang="bash">git config --global user.name yourname
git config --global user.email example@mail.com</pre>
<p>然后创建一个目录作为版本库：</p>
<pre lang="bash">mkdir example
cd example
git init</pre>
<p>把本地文件同步到远程 git host 服务网站上面</p>
<pre lang="bash"># 添加文件
git add filename
# 提交说明并提交
git commit -m 'first commit'
# 添加到远程地址，这个地址不固定，以 git hosts 提供地址为准
git remote add origin git@example.com:username/example.git
# 提交 origin 到 master
git push origin master</pre>
<p>另外，如果使用网上的 git host 服务，还涉及到设置 ssh public key 的问题，各个平台有些细微的差别，大家看 github 网站的<a href="http://github.com/guides/providing-your-ssh-key" target="_self">相关帮助</a>。</p>
<p>如果你想系统的学习 git， 不妨通读下 <a href="http://roclinux.cn/?p=914" target="_self">《看日记学git》系列文章</a></p>
]]></content:encoded>
			<wfw:commentRss>http://icyleaf.com/2008/11/new-guy-to-git/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress插件：WS Audio Player0.9.4</title>
		<link>http://icyleaf.com/2007/11/wordpress-plug-ins-ws-audio-player094/</link>
		<comments>http://icyleaf.com/2007/11/wordpress-plug-ins-ws-audio-player094/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 01:23:11 +0000</pubDate>
		<dc:creator>icyleaf</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[WS Audio Player]]></category>

		<guid isPermaLink="false">http://www.icyleaf.cn/2007/11/27/wordpress%e6%8f%92%e4%bb%b6%ef%bc%9aws-audio-player094/</guid>
		<description><![CDATA[这个版本本来并不需要再发日志发布，只不过是前不久我向WordPress官方插件库提交插件，昨天收到了SVN地址，今天本插件在官方插件库已经有一脚之地咯～呼呼~ 更新日志： 增加了英语语言的支持。 插件下载地址：http://wordpress.org/extend/plugins/ws-audio-player/]]></description>
			<content:encoded><![CDATA[<p>这个版本本来并不需要再发日志发布，只不过是前不久我向<a href="http://wordpress.org/extend/plugins" target="_blank">WordPress官方插件库</a>提交插件，昨天收到了SVN地址，今天本插件在官方插件库已经有一脚之地咯～呼呼~<br />
<img src="http://photo14.yupoo.com/20071128/091431_861815115.jpg" alt="WS Audio Player" width="490" height="320" /></p>
<p>更新日志：<br />
增加了英语语言的支持。</p>
<p>插件下载地址：<a href="http://wordpress.org/extend/plugins/ws-audio-player/">http://wordpress.org/extend/plugins/ws-audio-player/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://icyleaf.com/2007/11/wordpress-plug-ins-ws-audio-player094/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

