バッチ処理のログをgitで管理したいのでgit add . から commit push までをスクリプト化しました。
1 2 3 4 5 |
#!/bin/sh git status git add . git commit -m "定期ログ" git push origin master |
これだけの記事でした。
フリーランスWebエンジニアの開発ブログ AWS/Terraform/Docker/CircleCI/Vue.js/PHP/CakePHP/Laravel/Ruby on Rails/Python/MySQL/MariaDB/Apache/NginX/Vagrant/WordPress/Git/
バッチ処理のログをgitで管理したいのでgit add . から commit push までをスクリプト化しました。
1 2 3 4 5 |
#!/bin/sh git status git add . git commit -m "定期ログ" git push origin master |
これだけの記事でした。