8.4: GitHub Repo Browsing
By the end of this lesson, you should:
- Be familiar with navigating GitHub.
- Know how to view the commit history of a repo.
- Know how to navigate the Pull Requests tab in GitHub
One of the biggest benefits of Git is the ability to see contents of previous commits or versions. We can do this within the command line interface of Git, but it is easier on the GitHub website. Familiarise yourself with everything the GitHub website can display about your repo.

View a list of all commits.

See the contents of each commit.

Commit contents include a "diff" for every changed file.

View the full file, not just a "diff" of changes between old and new versions of the file.

View a list of all pull requests on a repo.

View details of a single pull request.

View a list of all commits within this pull request.
What if I want to undo something from a previous commit?
We can "roll back" our repos to a previous commit with the
git revert
command, but due to the small nature of our apps in Coding Fundamentals, it may be easier to "roll forward" by copying the code we want from a previous commit in GitHub, pasting that code into our local repo, and creating a new commit for these changes.Follow along with the video to navigate your own repo.
Last modified 9mo ago