上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: ... 阅读全文
posted @ 2015-07-19 18:03 廖东海 阅读(111) 评论(0) 推荐(0) 编辑
摘要: $ ssh-keygen -t rsa -C "youremail@example.com" // 创建SSH Key//将本地推送到github$git remote add origin https://www.github.com/liaodh/test.git //请求方式 : ht... 阅读全文
posted @ 2015-07-19 16:57 廖东海 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 进入控制台,>mysql -u root -p>use mysql;>UPDATE user SET host='%' WHERE user = 'root';>flush privileges; 阅读全文
posted @ 2015-07-14 18:48 廖东海 阅读(321) 评论(0) 推荐(0) 编辑
摘要: ref :http://mybatis.googlecode.com/svn/sub-projects/generator/trunk/eclipse/UpdateSite/ 阅读全文
posted @ 2015-07-12 22:02 廖东海 阅读(171) 评论(0) 推荐(0) 编辑
摘要: ref : Gerrit 阅读全文
posted @ 2015-07-06 20:02 廖东海 阅读(98) 评论(0) 推荐(0) 编辑
摘要: GIT 图工作区 使用git init 命令之后,当前文件夹会成为一个GIT 的工作区. > mkdir secondgittest > git init // 运行此命令之后 secondgittest 就是一个工作区 > cat>test.txt // 创建一个文件 > git add te... 阅读全文
posted @ 2015-06-28 17:33 廖东海 阅读(125) 评论(0) 推荐(0) 编辑
摘要: git log(--pretty=oneline) 查看日志, (--pretty=oneline) 简化信息.git reset --hard head 版本回退 head 表示当前版本git reflog 显示所有日志 和 git log 不同 (git log 只能看到当前版本之前的log... 阅读全文
posted @ 2015-06-28 16:10 廖东海 阅读(257) 评论(0) 推荐(0) 编辑
摘要: :w // 保存 == Ctrl+s:wq // 保存并退出ZZ //保存并退出:q! // 退出不保存 阅读全文
posted @ 2015-06-28 15:01 廖东海 阅读(117) 评论(0) 推荐(0) 编辑
摘要: ls 列出当前文件夹的文件ls -ah 如果文件(夹)是隐藏的可以显示pwd 显示当前工作路径cp copy 文件命令 cp 源文件 目标文件cat 查看文件和创建文件 cat > test.txt ...... EOF 结束 //创建文件 or cat >test.txt Ctrl +... 阅读全文
posted @ 2015-06-28 14:14 廖东海 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 安装GIT 从 msysgit.github.io 下载 for windows. 创建版本库 1 > mkdir foldname 2> cd foldname 3> pwd // 显示当前目录 4> git init // 通过git init命令把这个目录变成Git可以管理的版本库 5> g... 阅读全文
posted @ 2015-06-28 13:43 廖东海 阅读(140) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页