Last active
August 11, 2022 13:26
-
-
Save lambda-mike/cded1177d2da32857a8f8fc20e055088 to your computer and use it in GitHub Desktop.
Revisions
-
lambda-mike revised this gist
Aug 11, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,6 +3,6 @@ ## log ```sh # 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" ``` -
lambda-mike revised this gist
Aug 11, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,6 +3,6 @@ ## log ```sh # 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" ``` -
lambda-mike revised this gist
Aug 11, 2022 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,5 +3,6 @@ ## log ```sh # find all commits which modify any package.json file since yesterday git log origin/dev --since='yesterday' --name-only -- "*/package.json" ``` -
lambda-mike created this gist
Aug 11, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ # Git ## log ```sh git log origin/dev --since='yesterday' --name-only -- "*/package.json" ```