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
cat $(find . -name package-lock.json | grep -v -e node_modules -e bower_components | paste -sd " ") | md5sum | cut -d ' ' -f 1 | |
cat $(find . -name package-lock.json -not -path "*/node_modules/*" -not -path "*/bower_components/*" | paste -sd " ") | md5sum | cut -d ' ' -f 1 |
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
git log --graph --decorate $(git rev-list -g --all) --oneline |
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
update table set target_column=jsonb_set(source_column::jsonb, '{targetProperty}', 'newValue'::jsonb, true)::text where false |
OlderNewer