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批处理脚本的主要内容,如果未能解决你的问题,请参考以下文章

如何使用脚本启动具有特定工作目录的 Git Bash 窗口?

运行 Git Bash 脚本的 Windows 快捷方式

在 shell 脚本中执行的批处理文件不等待用户输入

在 git 存储库中处理密码的最佳实践是啥?

开机自启动批处理脚本

从批处理脚本中引发 Jenkins 作业中止