git批处理脚本
Posted yezhaohui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git批处理脚本相关的知识,希望对你有一定的参考价值。
方法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批处理脚本的主要内容,如果未能解决你的问题,请参考以下文章