标签:git add height global ping lob 方法 nbsp conf bsp
方法1:
先在 git bash 里执行:
alias blog=‘git add .; git commit -m "blog update"‘; git push origin gh-pages
以后要更新博客时,直接执行 blog
方法2:
在 git bash 里执行
git config --global alias.blog ‘!git add . && git commit -m "blog update" && git push origin gh-pages‘
或者
编辑 .git/config 文件,加上这么一段:
[alias]
blog = !git add . && git commit -m ‘blog update‘ && git push origin gh-pages
以后要更新博客时,执行 git blog
标签:git add height global ping lob 方法 nbsp conf bsp
原文地址:https://www.cnblogs.com/yezhaohui/p/9419480.html