摘要: https://git-scm.com/ 官方网站 讲解博客 http://www.ruanyifeng.com/blog/2014/06/git_remote.html git:常用命令 1、git clone 从远程服务器克隆版本库 (1)生成目录与远程目录同名称 $ git clone <版本 阅读全文
posted @ 2016-11-08 12:54 帅LOVE俊 阅读(1869) 评论(0) 推荐(0) 编辑
摘要: 1、使用下面的关系区别这两个操作:git pull = git fetch + git mergegit pull --rebase = git fetch + git rebase 2 一、基本 git rebase用于把一个分支的修改合并到当前分支。 假设你现在基于远程分支"origin",创建 阅读全文
posted @ 2016-11-08 12:54 帅LOVE俊 阅读(6788) 评论(0) 推荐(1) 编辑
摘要: MySQL 4.1版本之前是MySQL323加密,MySQL 4.1和之后的版本都是MySQLSHA1加密, (1)以MySQL323方式加密 select old_password('111111'); (2)以MySQLSHA1方式加密 select password('111111'); (1 阅读全文
posted @ 2016-11-08 12:53 帅LOVE俊 阅读(2006) 评论(0) 推荐(1) 编辑
摘要: 程度从强到弱 1、drop table tb drop将表格直接删除,没有办法找回 2、truncate (table) tb 删除表中的所有数据,不能与where一起使用 3、delete from tb (where) 删除表中的数据(可制定某一行) 区别:truncate和delete的区别 阅读全文
posted @ 2016-11-08 12:52 帅LOVE俊 阅读(114384) 评论(0) 推荐(2) 编辑