摘要: setup_hooks request header请求头 json请求参数 阅读全文
posted @ 2020-04-09 20:44 margot921 阅读(190) 评论(0) 推荐(0) 编辑
摘要: git $ git init在工作目录中初始化新仓库 $ git remote -v查看当前的远程库 $ git remote add [shortname] [url]添加远程仓库 $ git status检查当前文件状态 $ git diff比较工作目录中当前文件和暂存区域快照之间的差异,也就是 阅读全文
posted @ 2020-04-09 20:43 margot921 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 命令的基本格式 命令提示符 [root@localhost ~] # ~:代表用户当前所在的目录,此例中用户当前所在的目录是家目录。 #:命令提示符,Linux用这个符号标识登录的用户权限等级。如果是超级用户,提示符就是#;如果是普通用户,提示符就是$。 家目录 超级用户的家目录:/root/。 普 阅读全文
posted @ 2020-04-09 20:40 margot921 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1.查询 检索数据select 检索 检索单个列、多个列、所有列 检索不同的值(distinct) select distinct idfrom products; 限制结果 top select top 5 name from products; fetch first 5 rows only s 阅读全文
posted @ 2020-04-09 20:31 margot921 阅读(190) 评论(0) 推荐(0) 编辑