徐小玉的博客。
发布时间:2018-04-05 21:03:49
(1).进入/usr/local/mysql/bin,查看此目录下是否有mysql在该文件中添加mysql/bin的目录添加完成后,按esc,然后输入wq保存。登陆:mysql -u root -p # 登陆的时候这样的错误:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)1: 进入系统偏.........【阅读全文】
发布时间:2018-01-26 09:34:29
Git中从远程的分支获取最新的版本到本地有这样2个命令:1. git fetch:相当于是从远程获取最新版本到本地,不会自动merge git fetchorigin mastergit log -p master..origin/mastergit mergeorigin/master 以上命令的含义: 首先从远程的o.........【阅读全文】
发布时间:2018-01-22 15:51:02
2018-01-22:To get the file change lists , the difference between your work area and the remote master. since the remote master is the latest verson of laest deploy, it is the file change list for this patch.git diff origin/master HEAD --name-status......【阅读全文】