Lines Matching full:commits
2 …scripts for access lists of commits between releases. There are other scripts for automatically ge…
17 ### Part 1: getting a list of commits
19 You are going to get a list of commits since the last release in csv format. The usage is the follo…
24 …st to `results/commitlist.csv`. Please confirm visually that the oldest commits weren’t included …
26 … list contains commits from the merge-base of tags/<most_recent_release_tag> and whatever commit h…
28 * Go through the list of cherry-picked commits to the last release and delete them from results/com…
31 …* Look at the commit history https://github.com/pytorch/pytorch/commits/release/<most_recent_rele…
34 …f there are cherry-picks to the release branch or if you’re categorizing commits throughout the th…
38 ### Part 2: categorizing commits
42 … used for exploration and finding relevant commits. For example the commitlist attempts to categor…
49 `python commitlist.py --rerun_with_new_filters` Note that this will only update the commits in the …
51 …through the commits and done as much automated categorization you can run the following for an int…
54 …from the set of labeled commits in commitlist.csv. This will utilize the title, author, and files …
106 * bc_breaking: All commits marked as BC-breaking (the script should highlight them). If any other c…
107 * deprecation: All commits introducing deprecation. Should be clear from commit msg.
108 * new_features: All commits introducing a new feature (new functions, new submodule, new supported …
109 * improvements: All commits providing improvements to existing feature should be here (new backend …
110 * bug fixes: All commits that fix bugs and behaviors that do not match the documentation
111 * performance: All commits that are here mainly for performance (we separate this from improvements…
112 * documentation: All commits that add/update documentation
113 * devs: All commits that are not end-user facing but still impact people that compile from source, …
176 This will create new markdown files only from cherry picked commits. And I manually copied and past…
177 the submodule owners will see these new commits.
182 …tents which was really helpful in jumping to sections and copy and pasting the appropriate commits.