我正在寻找一种让我的git日志更短的方法。我想同时拥有亲戚和完整日期版本:
* d01c261 2015-07-22 [-2d] A commit comment - John Doe (branch HEAD)
%ar
选项提供了可能被重写2 weeks ago
的{{1}}。
获得这个的一个丑陋方法是:
-2w
我可以使用哪种更好的解决方案(除了使用git lg | perl -pe 's/(\d+) (\w)\w+ ago/-$1$2/'
或tig
)?