'How do I view all files of a repository in GitHub on a given commit version?

How can I switch to a commit ID in a way so that I not only see the changes, but I can view all files in the repository at that point in time?



Solution 1:[1]

Enter the commit ID into the URL like this (without the square brackets): https://github.yourcompany.com/[organization]/[repository]/tree/[commit_id]

In case of a specific file, it would be for example: https://github.yourcompany.com/[organization]/[repository]/blob/[commit_id]/.folder/Example.kt

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1