linux – 自动将日期添加到git commit消息

前端之家收集整理的这篇文章主要介绍了linux – 自动将日期添加到git commit消息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

所以我有一个sh脚本将一些文件放在一起,然后将它们提交给git repo.如何动态地将日期添加到提交消息中?

我的.sh看起来像

// do things to files...
git add -u;
git commit -m 'generated files on 
最佳答案
只需格式化date命令的输出和Bob的叔叔:

// do things to files...
git add -u;
git commit -m "generated files on `date +'%Y-%m-%d %H:%M:%S'`";
git push origin master
原文链接:https://www.f2er.com/linux/440622.html

猜你在找的Linux相关文章