码迷,mamicode.com
首页 > 其他好文 > 详细

git批处理脚本

时间:2018-08-04 20:31:45      阅读:225      评论:0      收藏:0      [点我收藏+]

标签: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批处理脚本

标签:git add   height   global   ping   lob   方法   nbsp   conf   bsp   

原文地址:https://www.cnblogs.com/yezhaohui/p/9419480.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!