摘要: 简单学习了一下Git,整理了一点常用语句 http连接 git clone https://仓库地址 连接githup cd shop 进入文件夹 git config --global user.name "用户名" 设置用户名 git config --global user.email "邮箱 阅读全文
posted @ 2020-07-17 21:16 YY1028 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 数据库基本语法 MySQL增:insert into 表名 (字段1,...,字段n) values (值1,...,值n) MySQL删:delete from 表名 where 条件 MySQL改:update 表名 set 键1=值1,...,键n=值n where 条件 MySQL查:sel 阅读全文
posted @ 2020-07-17 21:03 YY1028 阅读(212) 评论(0) 推荐(0) 编辑