Git预提交MySQL转储/备份
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git预提交MySQL转储/备份相关的知识,希望对你有一定的参考价值。
#!/bin/sh # Refresh the SQL schema file for inclusion within the git commit # If something fails, exit with status other than 0 set -e # first, remove our original schema cd /var/www rm -f filename.sql # generate a new schema # Add the schema to the next commit git add filename.sql # Exit success exit 0
以上是关于Git预提交MySQL转储/备份的主要内容,如果未能解决你的问题,请参考以下文章
MySQL 使用 mysqldump 转储SQL格式的数据及重新加载SQL格式的备份