diff --git a/README.MD b/README.MD index 770c7b8..b259b10 100644 --- a/README.MD +++ b/README.MD @@ -1,4 +1,4 @@ -## 《Evan Blog》 +# web前端技术博客 ## 介绍 @@ -109,7 +109,7 @@ else fi git init git add -A -git commit -m ${msg} +git commit -m "${msg}" git push -f $codingUrl master # 推送到coding # deploy to github @@ -120,7 +120,7 @@ else githubUrl=https://xugaoyi:${GITHUB_TOKEN}@github.com/xugaoyi/evanblog.git fi git add -A -git commit -m ${msg} +git commit -m "${msg}" git push -f $githubUrl master:gh-pages # 推送到github cd - # 退回开始所在目录 diff --git a/deploy.sh b/deploy.sh index d5bd1fe..ee3a2dd 100644 --- a/deploy.sh +++ b/deploy.sh @@ -22,7 +22,7 @@ else fi git init git add -A -git commit -m ${msg} +git commit -m "${msg}" git push -f $codingUrl master # 推送到coding # deploy to github @@ -33,7 +33,7 @@ else githubUrl=https://xugaoyi:${GITHUB_TOKEN}@github.com/xugaoyi/evanblog.git fi git add -A -git commit -m ${msg} +git commit -m "${msg}" git push -f $githubUrl master:gh-pages # 推送到github diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index b6af4a2..cd0b04c 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -2,7 +2,7 @@ const nav = require('./config/nav.js'); const sidebar = require('./config/sidebar.js'); module.exports = { title: 'Evan Blog', // 标题 - description: 'Evan Blog个人技术博客,基于vuepress构建,专注web前端学习与总结。JavaScript,js,ES6,TypeScript,vue,python,css3,html5,Node,git,github等技术文章。', // 描述,以 标签渲染到当前页面的 HTML 中 + description: 'Evan Blog,web前端技术博客,基于vuepress构建,专注web前端学习与总结。JavaScript,js,ES6,TypeScript,vue,python,css3,html5,Node,git,github等技术文章。', // 描述,以 标签渲染到当前页面的 HTML 中 // process.env.VUEPRESS_BASE 在package.json生成 // base: process.env.VUEPRESS_BASE || '/', // 基础路径,默认'/',如果放到github pages要改成仓库名 head: [ // 注入到当前页面 中的标签,格式[tagName, { attrName: attrValue }, innerHTML?]