我正在使用Heroku Pipleines从暂存环境部署到生产环境,并希望编写一个脚本来比较两个远程仓库以查看是否有任何待处理的迁移。所以我需要的是:
git diff staging/master..production/master
使用过滤器检查db/migrate
目录。
有什么想法吗?感谢。
答案 0 :(得分:1)
手册页说法语是:
git diff [options] <commit> <commit> [--] [<path>...]
在你的情况下,这意味着:
git diff staging/master production/master -- db/migrate