Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个由 GitLab 管理的 git 服务器,我正在寻找一种方法来从 git 存储库中获取我的一个项目的最新版本,并自动缩小 CSS、HTML 和 Javascript 并为生产环境做好准备。
我想我可以用 PHP 编写一个脚本,使用各种缩小库在项目的每个文件夹中循环并缩小所有内容,但我想知道是否有一些已经测试过的方法可以与 Git 存储库一起使用。
我不确定我是否正确理解了您的问题,但是您可以创建一个从 git 存储库中提取的 shell 脚本并进行缩小
可能是一个看起来像的文件 update.sh。假设 minify.php 缩小你的资产
#!/bin/sh git pull origin master php minify.php