This document outlines the comprehensive, step-by-step process for generating the weekly notable changes report for the Flutter repository. Follow these instructions carefully to ensure accuracy and efficiency.
- Fetch Latest Commits: Ensure the local repository is up-to-date by running
git fetch
. - Get All Commits from the Last 7 Days: Get a list of all commits that have landed in the past seven days (inclusive of today). Use the following command to get the commit hash and the subject line:
git log --since="7 days ago" --pretty=format:"%H - %s"