今日は、ブログページ(nanocで開発)をgithubページに自動的にデプロイする関数を作成したいと思いました。スクリプトは次のとおりです。
function cmit()
{
nanoc compile;
git add .;
git commit -am $1;
git push origin source;
cd output; git add .;
git commit -am $1;
git push origin master;
cd ..;
echo 'new version deployed! now starting nanoc locally..';
nanoc aco;
}
使用例:cmit "my example commit!"
.bashrc
関数をシステム(OSX)に登録する方法がわかりませ.bash_profile
ん。助けてください!