# find all commits which modify any 'package.json' file on 'dev' branch in remote 'origin' since yesterday
git log origin/dev --since='yesterday' --name-only -- "*/package.json"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env nix-shell | |
| #! nix-shell -i perl -p perl perl540Packages.Mojolicious | |
| # chmod u+x ./mserver.pl # in order to run it directly: | |
| # ./mserver.pl | |
| use strict; | |
| use warnings; | |
| use Mojolicious::Lite; | |
| my $BASE = app->home->child('pages'); # Mojo::Path object; stringifies automatically |
OlderNewer