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.
我想镜像一个远程站点(类似于 CPAN,通过 rsync)并使用git. 是否有任何工具可以执行“从存储库中删除已删除的文件并将更改/新文件添加到索引并以当前日期作为提交消息提交”任务?
git
我们的想法是制作网站的存档(仅文件)并每天返回。
制作一个shell脚本:
git add --all git commit -m "changes on `date`"
不确定将当前日期放入提交消息是否有意义,因为每个提交都已经有了时间戳。