All links of one day
in a single page.
<Previous day - Next day>

rss_feedDaily RSS Feed
floral_left The Daily Shaarli floral_right
——————————— May 3, 2018 - Thursday 03, May 2018 ———————————
git - alias -
thumbnail

Add this to your user's ~/.gitconfig under [alias] to make it globally available:

lsch = "!f() { git diff --name-status -r "HEAD~$1"; }; f"

You can invoke this to retrieve all affected files in the last 7 commits like so:

$ git lsch 7

-