今天我想编写一个函数,它将我的博客页面(在 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!"
我真的不知道如何在系统(OSX)中注册我的功能 - 在.bashrc
,.bash_profile
或者其他地方?请帮忙!