<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></title> 
<link>https://jackxiang.com/index.php</link> 
<description><![CDATA[赢在IT，Playin' with IT,Focus on Killer Application,Marketing Meets Technology.]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></copyright>
<item>
<link>https://jackxiang.com/post//</link>
<title><![CDATA[如何搭建一个git服务器？]]></title> 
<author>jack &lt;xdy108@126.com&gt;</author>
<category><![CDATA[Unix/LinuxC技术]]></category>
<pubDate>Mon, 11 Apr 2016 15:14:51 +0000</pubDate> 
<guid>https://jackxiang.com/post//</guid> 
<description>
<![CDATA[ 
	༒࿈背༙྇景༙྇：༒࿈这༙྇个༙྇༒࿈还༙྇是༙྇༒࿈0༙྇༒࿈9༙྇༒࿈年༙྇༒࿈开༙྇始༙྇༒࿈兴༙྇起༙྇，༒࿈现༙྇在༙྇༒࿈火༙྇起༙྇来༙྇༒࿈了༙྇。࿈༒࿈༒࿈༒࿈༒࿈༒࿈༒࿈༒࿈༒࿈༒࿈༒࿈༒<br/><br/>GitHub是一个免费托管开源代码的Git服务器，如果我们不想公开项目的源代码，又不想付费使用，那么我们可以自己搭建一台Git服务器。首先你需要一台client和一台server。client可以是windows系统，利用git bash或者cywin类似的软件来执行指令，也可以是ubuntu等linux系统，server可以是本地搭建的服务器，也可以是云服务器。例如：阿里云服务器，对大学生有很大的优惠，非常划算!(没有任何的利益关系)<br/><br/>1.在本机上安装openssh<br/><br/>在linux client上安装ssh服务，如果是windows的安装git for windows<br/><br/>sudo apt-get install openssh-server<br/><br/>可以查看ssh服务是否开启<br/><br/>ps -e &#124; grep ssh<br/><br/>2.在server上创建一个git用户<br/><br/>sudo adduser git<br/><br/>3.在server上安装git<br/><br/>sudo apt-get install git-core<br/><br/>4.在server上初始化仓库<br/><br/>cd /home/git/<br/><br/>git init --bare myRep.git<br/><br/>5.通过git clone命令进行克隆远程仓库<br/><br/>git clone git@&#123;your server ip&#125;:/home/git/myRep.git<br/><br/>这里都必须知道server上git用户的登入密码。
]]>
</description>
</item><item>
<link>https://jackxiang.com/post//#blogcomment</link>
<title><![CDATA[[评论] 如何搭建一个git服务器？]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>https://jackxiang.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>