Git命令参考

git init # 初始化本地git仓库(创建新仓库)
git config --global user.name "xxx" # 配置用户名
git config --global user.email "xxx@xxx.com" # 配置邮件
git config --global color.ui true # git status等命令自动着色
git config --global color.status auto
git config --global color.diff auto
git config --global color.branch auto
git config --global color.interactive auto
git clone git+ssh://git@192.168.53.168/VT.git # clone远程仓库

2017-09-30

Nginx

  1. 如何请求静态页面以及动态页面?PPT文档
  2. HTTP协议细节;
    2.1 HTTP: Hyper Text Transport Protocol超文本传输协议
    2.2 HTTP请求Request和响应Response有哪些组成部分?
    a. 请求Request: 请求头header +请求体body
    b. 响应Response: 响应头header+响应体body
    c. 请求头:HTTP方法(GET/POST/PUT/DELETE..) + 协议版本号 + 请求路径….
    d. 请求体: 包含客户端发送给服务器端的参数(POST); 参数格式:text/plain, text/xml, text/json
    e. 响应头:版本号,状态码status code, 消息message(OK) , 响应域
    f. 响应体:客户端请求的资源数据

2017-09-30

Linux命令

列表项目

                                         Linux操作系统

颜色介绍
白色或黑色 普通文件
蓝色 文件夹
绿色 可执行文件
红色 包文件或压缩包文件
浅蓝色 链接文件
红色闪烁 链接的文件有问题
黄色 设备文件
灰色 其他文件
紫色 图片

2017-09-30

PHP单词

php 英语单词,php 常用英语单词,帮助您快速学习php编程语言!掌握了php 里面所涉及到的所有英语单词,能更好的帮助您快速理解php 编程语言,让您学习php 编程语言的速度快人十倍。

A.
abstract 抽象的
access 存取、访问
account 账户
action 动作
activate 激活
active 活动的
address 地址
aggregation 聚合、聚集
alias 别名
align 排列、对齐

2017-09-30