The first thing is to make sure the “Public Access Block” are disabled. In the AWS console, go to your bucket, then “Permissions”, then “Block public access”. Then set the bucket policy to this: { "Version": "2008-10-17", "Statement": [ {… Read More
How to search the git history?
To search the content of commits, as opposed to the metadata like the commit message, run this: $ git grep REGEX $(git rev-list –all) To search the commit messages, run that: $ git log –all –grep REGEX I work as… Read More