
change
fearless11
记录
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
欢迎使用优快云-markdown编辑器
下载安装#wget https://openresty.org/download/ngx_openresty-1.7.10.1.tar.gz #tar xf ngx_openresty-1.7.10.1.tar.gz #cd ngx_openresty-1.7.10.1 #./configure --with-luajit #make && make install【location】=开头表示精确原创 2017-02-19 11:15:27 · 421 阅读 · 0 评论 -
git基本命令
git常用命令:1.创建git资源库 git init --bare 库名称2.在用户文件夹下把资源clone下来 git clone <仓库地址或目录> /d/software/respository/<仓库名> <用户目录>3.创建一个文件,纳入到版本控制中。 git add <文件名>4.提交到本地版本库中。 git commit <文件名>5 推送到远程共享库中 git push原创 2017-02-14 23:23:36 · 360 阅读 · 0 评论