検索

ホームページ  >  に質問  >  本文

shell - Git批处理脚本

弄了个静态博客,但是每次上传觉得挺麻烦的,git add .,git commit -m '',git push origin gh-pages什么的...麻烦死了...啊对了我是在Windows下..

所以我就想写成一个.bat的批处理脚本试试(blog的话commit log也不用天天写0_0)

结果写到调用Git bash之后就不知道怎么办了,对批处理不是很懂,所以在这里请教下大大们

天蓬老师天蓬老师2798日前838

全員に返信(3)返信します

  • 巴扎黑

    巴扎黑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-pagesalias 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 を実行してください🎜

    返事
    0
  • PHP中文网

    PHP中文网2017-04-24 09:13:29

    実際には、これは git インストール ディレクトリにあります。 git-xxx ファイルを作成し、シェルを使用してそのファイルを書き込みます。次に、

    を使用します リーリー

    実行する準備ができました。 。

    たとえば、git add、git commit、git Push を継続的に使用する必要がある場合は、そのディレクトリに次の内容の「git-acp」ファイルを追加できます

    リーリー

    次に、呼び出す必要があるディレクトリで、

    を呼び出します リーリー

    以上です。 。

    また、シェルを使わずにPythonなどのプログラミング言語を使っても可能です。 。

    返事
    0
  • 迷茫

    迷茫2017-04-24 09:13:29

    サオニアン。 TortoiseGitを使用します。小さなカメ。 svnと同じです。 https://code.google.com/p/tortoisegit/

    返事
    0
  • キャンセル返事