12 2018 档案
Git 全局配置查看修改
摘要:查看 git config --list git config --global --list 新增 git config --global user.emal=123 删除 git config --global --unset user.emal 阅读全文
posted @ 2018-12-27 11:19 1161588342 阅读(2083) 评论(0) 推荐(0)
Git 上传文件到 码云 gitee
摘要:1:git bash 执行如下 2:CMD在项目的文件夹目录下执行如下 · git add -A 提交所有变化 · git add -u 提交被修改(modified)和被删除(deleted)文件,不包括新文件(new) · git add . 提交新文件(new)和被修改(modified)文件 阅读全文
posted @ 2018-12-25 11:14 1161588342 阅读(387) 评论(0) 推荐(0)
Vue 图片引入
摘要:https://blog.csdn.net/TingiBanDeQu/article/details/78521521 阅读全文
posted @ 2018-12-18 18:02 1161588342 阅读(102) 评论(0) 推荐(0)
Eslint 规则说明
摘要:https://blog.csdn.net/helpzp2008/article/details/51507428 阅读全文
posted @ 2018-12-13 14:25 1161588342 阅读(84) 评论(0) 推荐(0)
nrm 使用
摘要:切换npm 阅读全文
posted @ 2018-12-13 14:04 1161588342 阅读(78) 评论(0) 推荐(0)
VUE watch
摘要:https://www.cnblogs.com/shiningly/p/9471067.html 阅读全文
posted @ 2018-12-12 16:36 1161588342 阅读(93) 评论(0) 推荐(0)
Xshell 公钥登入服务器
摘要:1:生成公钥 此时有test.pub文件 2:linux CentOS 7 配置 2.1 test.pub 存入/root/test.pub目录下面 2.2 确保authorized_keys文件内容为空 清空命令 2.3 复制test.pub入/root/.ssh/authorized_keys 阅读全文
posted @ 2018-12-03 16:13 1161588342 阅读(274) 评论(0) 推荐(0)
Tomcat 日志分割
摘要:配置 3)修改Tomcat中context.xml文件,在<Context> 标签修改为<Context swallowOutput="true">,以接管tomcat的日志输出。这样,使用log4j进行日志切分就完成了 参考地址: https://blog.csdn.net/woshiji5941 阅读全文
posted @ 2018-12-03 15:16 1161588342 阅读(121) 评论(0) 推荐(0)