09 2013 档案

摘要:安装:依赖的软件包:gcc gcc-c++ autoconf automakezlib zlib-devel openssl opensll-devel pcre pcre-devel到官方网站上下载nginx包:解压:tar -zxf nginx-x.x.tar.gz安装三步走:./configure------- make------make install./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/nginx/sbin/nginx \--error-log-path=/var/log/nginx/error.l 阅读全文
posted @ 2013-09-05 04:08 osxlinux 阅读(339) 评论(0) 推荐(0)
摘要:centos 安装git:yum install git git-corerepository 仓库,设置全局用户名以及邮箱。git config --global user.name "yourname"git config --global user.email "xxx@xxx.com"git init #初始化本地仓库。如果当前目录没有.git目录则创建。.git就是当前目录的版本仓库。git add . #添加当前目录到版本地.git库git commit -m “要提交的说明” 提交当前目录的文件到版本库如果不是在某一个仓库的话,git st 阅读全文
posted @ 2013-09-03 13:54 osxlinux 阅读(569) 评论(0) 推荐(0)