mysql基础再回顾16-12-15
UEditor 代码的高亮显示16-11-23
编辑时,启用代码语言: 输入对应的代码,保存上传。 在前台展示的时候,页面的head头加载代码:<script type="text/javascript" src="/community/Public/Resourceblog/min?f=/community/Public/Resourceadming/ueditor/third-party/SyntaxHighlighter/shCore.js"></script>
<link rel="stylesheet" href="/community/Public/Resourceblog/min?f=/community/Public/Resourceadming/ueditor/third-party/SyntaxHighlighter/shCoreDefault.css"
....
....
在线激活 - - PhpStorm打不开了?提醒你激活16-09-24
workerman在Linux下的配置及其注意事项16-09-09
Git保存密码16-09-09
git 保存密码 for windows
1.First, download git-credential-winstore and install it in your git bin directory.
首先下载git-credential-winstore.exe 然后移动到git的bin目录下
2.Next, make sure that the directory containing git.cmd is in your Path environment variable. The default directory for this is C:\Program Files (x86)\Git\cmd on a 64-bit system o
....
....
git简介--3--多分支开发注意事项16-09-09
Git基本命令 git clone 克隆代码
git branch 分支
git status 当前分支及其操作记录
git diff 代码更改记录
git checkout 检出|切换分支
git add 添加新建文件
git commit -am "提示信息:提交所有修改"
git push origin master|branch-new 推送远程分支多分支开发注意事项1.只改写自己负责的模块,轻易不同改写其他分支负责的代码
*2.养成习惯,每天提交分支
*3.分支push之前先要merge master
*4.merge master之前,先要pull origin master ,实时
....
....