Reputation: 691
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?
Upvotes: 1
Views: 173
Reputation: 691
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
Upvotes: 1