Home > Software design >  How do I view all files of a repository in GitHub on a given commit version?
How do I view all files of a repository in GitHub on a given commit version?

Time:05-16

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?

CodePudding user response:

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

  • Related