Handy stuff
1. Command to find apk-s in current dir tree and print dates (works under windows bash and linux)
find . -name *.apk -printf "%TY-%Tm-%Td %TH:%TM:%TS %Tz %p\n"
2. git comment to find: all the commits which are present on master but not on develop.
$ git log --left-right --cherry-mark --oneline --pretty="%m, %h, %an, %cr, %s" master...develop
result is in comma delimited format, so it can be imported into spreadsheet. First columnt is < if commit is not present in develop.
Leave a Reply