弄了个静态博客,但是每次上传觉得挺麻烦的,git add .
,git commit -m ''
,git push origin gh-pages
什么的...麻烦死了...啊对了我是在Windows下..
所以我就想写成一个.bat
的批处理脚本试试(blog的话commit log也不用天天写0_0)
结果写到调用Git bash
之后就不知道怎么办了,对批处理不是很懂,所以在这里请教下大大们
巴扎黑2017-04-24 09:13:29
方法 1:
ここから:
http://mayecn.com/blog/2013/05/03/multiple-alias/
最初に git bash で実行します: alias blog='git add .;git commit -m "blog update"';git Pushorigin gh-pages
alias blog='git add .;git commit -m "blog update"';git push origin gh-pages
以后要更新博客时,直接执行 blog
方法2:
来自这里:
http://stackoverflow.com/questions/7534184/git-alias-multiple-commands-and-parameters
在 git bash 里执行git config --global alias.blog '!git add . && git commit -m "blog update" && git push origin gh-pages'
或者
编辑 .gitconfig 文件,加上这么一段:
[alias]
blog = !git add . && git commit -m 'blog update' && git push origin gh-pages
以后要更新博客时,执行 git blog
blog
を直接実行してください🎜
<時間>
🎜🎜方法 2:🎜🎜
ここから:
http://stackoverflow.com/questions/7534184/git-alias-multiple-commands-and-parameters🎜
🎜 git bash で実行します🎜git config --global alias.blog '!git add . && git commit -m "blog update" && git Push Origin gh-pages'
🎜
🎜または🎜
🎜 .gitconfig ファイルを編集し、次の段落を追加します: 🎜
リーリー
🎜今後ブログを更新したい場合は、git blog
を実行してください🎜PHP中文网2017-04-24 09:13:29
実際には、これは git インストール ディレクトリにあります。 git-xxx ファイルを作成し、シェルを使用してそのファイルを書き込みます。次に、
を使用します リーリー実行する準備ができました。 。
たとえば、git add、git commit、git Push を継続的に使用する必要がある場合は、そのディレクトリに次の内容の「git-acp」ファイルを追加できます
リーリー次に、呼び出す必要があるディレクトリで、
を呼び出します リーリー以上です。 。
また、シェルを使わずにPythonなどのプログラミング言語を使っても可能です。 。
迷茫2017-04-24 09:13:29
サオニアン。 TortoiseGitを使用します。小さなカメ。 svnと同じです。 https://code.google.com/p/tortoisegit/