Is there any shorter command to get a fix for a certain date than, for example, the expression below?
git log --after="2014-09-02 00:00:00" --before="2014-09-02 23:59:59"
You can create an alias.
git config --global alias.logondate '!f() { git log --after "$1 00:00:00" --before "$1 23:59:59"; }; f'
How can you use it
git logondate 2014-09-02
You should also read the Haacked blog post about git aliases . It contains many useful examples.
Of course you can use unix timestamps, it's a little shorter :)
git log --after=1409608800 --before=1409695199
Source: https://habr.com/ru/post/1201882/More articles:Template for creating reusable components - templatesVisual Studio 2013 hides code block lines, indicators - visual-studio-2013ES-head plugin does not work through browser - pluginsUnboxing iOS: how you edit the content view more than the screen in UIScrollView - iosauto zoom flag in hazelcast configuration - javaIs there an easier way to create a static library? - c ++How to change iOS app icon in iTunes Connect when upgrading version? - iostaskwarrior, delete old duplicate tasks - taskwarriorError migrating magic entries "Cannot find model for source store" - core-dataConfusion about bsr and lzcnt - assemblyAll Articles