🌐
Reddit
reddit.com › r/learnprogramming › github commit history
r/learnprogramming on Reddit: Github commit history
December 9, 2022 -

In github why I cannot see the all commits history I have made in a single repository? I cannot see the option to see all my commits history. It would be great if I get help on this . Thank you!

🌐
Reddit
reddit.com › r/github › is there a way to show all the commits history in a single page, since the very first commit?
r/github on Reddit: Is there a way to show all the commits history in a single page, since the very first commit?
January 20, 2022 -

I've got a client who would like to better understand how much time I dedicate to their project, which is a very cool thing because that specific repository gets an insane amount of commits very week.

I would love to print the entire history since Jan 1st 2021 but GitHub uses a pagination system, which breaks the history in multiple pages.

Is there any trick to see the entire list of commits ina single (very long, sometimes) page? That way I could send the link or even print it and deliver everything by hand, in a nice envelope.

Thanks!

🌐
Reddit
reddit.com › r/learnprogramming › what is the best way to view a repo's git history quickly?
r/learnprogramming on Reddit: What is the best way to view a repo's git history quickly?
November 10, 2018 -

I find a lot of value in looking at how other's organize their codebase via digging through their commit history. Especially if I know how that person thinks already

I normally fork a repo, and open it into VScode. There's two well known extensions called (1) git history and (2) gitLens. But I don't know how to configure it the way I want easily. Youtube didn't have an answer either.

What I want to do is the following:

  • (A) Quickly see all changes and commits to one file

  • (B) See normal commit history to master branch for everything

For (A), I want the following workflow

  1. Pick a file of interest.

  2. Run a command

  3. Pick the first commit done on file

  4. Left side, see previous commit, right side see changes

  5. Hit →

  6. This shows next commit / diffchange

For (B), I want the following workflow

    1. Show git history of entire master branch, similar to stackoverflow.

  • 2. Freeze the pane at the top, kind of like what you do to microsoft-excel header-rows.

      • This shows commit message / history overview only. Fills up 10% of screen, with it's own vertical scrollbar.

  • 3. Click a commit date, organized with most recent commits down bottom

  • 4. Git diff log is shown, similar to what you view in github commit normally.

      • Fills up 90% of screen. Shows file changes top to bottom, left shows previous file, right side changes

Side note as well, if anyone knows how to do this or knows of a service -

I want to subscribe / watch a github repo, but only see commit changes only to master + a small preview of changes right in the email itself. As of now github shows you issue / PR requests, and just a commit name overview change.

This way I can just learn things faster since github is just a massive learning resource that I haven't really used properly

🌐
Git
git-scm.com › book › en › v2 › Git-Basics-Viewing-the-Commit-History
Git - Viewing the Commit History
After you have created several ... existing commit history, you’ll probably want to look back to see what has happened. The most basic and powerful tool to do this is the git log command. These examples use a very simple project called “simplegit”. To get the project, run: $ git clone ...
🌐
Reddit
reddit.com › r/git › seeing git history of repo
r/git on Reddit: Seeing git history of repo
August 26, 2018 -

This may be a very newb question but here goes: I want to click on someone’s repo, or even one of my own, and be able to see the history of changes as the website codebase kept getting bigger.

I want to study how a web application went from 10 lines of code to 500 lines of code and study every change to see how he/she built the website.

One way I can think if is to click on the first SHA, search for the new lines of code, click on the second SHA, search for new lines of code, repeat, etc. is there an easier way?

🌐
Reddit
reddit.com › r/github › github commit history not showing when committing from a different machine
r/github on Reddit: Github commit history not showing when committing from a different machine
May 23, 2024 -

I have been working on a project from my windows pc, i then commitedthat project and pushed it and decided to switch to using my mac, so i did git clone from my mac and then started working on it there. The commits from my mac seem to have worked as when i go to my repository on the main branch (the only branch) i see my commits from my mac, however, on the repository it shows two people that contributed to it, but both of them are me and are my usernames.

I am logged into VS code through the Github through the same account but it somehow registered that as two people. Also, when i commit from my mac, my Github commit activity does not update. But when i commit from my windows it registers the commit activity.

What could be the issues? Is there a way i can change my account's commit activity from the last 4 days too or is that not possible anymore, i have been commiting for the pat 4 days but no activity is shown on my account.

Thanks!

Find elsewhere
🌐
Reddit
reddit.com › r/git › tools to visualize commit history in a tree structure picture
r/git on Reddit: Tools to visualize commit history in a tree structure picture
March 29, 2024 -

Ive tried gource but its not quite im looking for. Im looking for a tree like representation of the timeline of the commit history

🌐
Happy Git and GitHub for the useR
happygitwithr.com › time-travel-see-past.html
Chapter 30 Time travel: See the past | Happy Git and GitHub for the useR
The hyperlink-iness of repos hosted ... how a specific file came to be the way it is? First navigate to the file, then notice “Blame” and “History” in the upper right....
🌐
Reddit
reddit.com › r/github › private commit history when public?
r/github on Reddit: Private commit history when public?
May 11, 2020 -

Hi guys,

So I have a private repo for a project I’ve been working on that I’d like to make public. Previously, I had database info hardcoded in the code but recently moved to env vars as I productionize. I’m ready to make the repo public so others can view, but I’m worried about whether they’ll be able to see the hardcoded database user info in the commit history.

So I was wondering - if I make a private repo public, can others view the commit history/diffs from when it was private?

🌐
GitHub
docs.github.com › en › pull-requests › committing-changes-to-your-project › viewing-and-comparing-commits › differences-between-commit-views
Differences between commit views - GitHub Docs
March 7, 2023 - Navigating to the commits page of a repository by clicking the clock icon with the number of commits at the top of the main repository view. Navigating to the commit history for a specific file by clicking on a file, then clicking History, to get.
🌐
Saltfish
saltfish.ai › tutorials › github › how to see commit history in github
How to View Commit History in GitHub (Complete Guide) | Saltfish
April 15, 2026 - Navigate to your target repository on GitHub. Locate the 'Commits' link positioned above the file listing, typically next to the branch dropdown menu. Click on the 'Commits' link to access the repository's commit history page.
🌐
Scribe
scribehow.com › viewer › How_to_See_Commit_History_in_GitHub__oa6CBxXxTbKVgHKP1bdUVA
How to See Commit History in GitHub | Scribe
While you can check your commit history with Terminal easily enough using the "git log" command, checking it visually through GitHub is a little different. Let's get to it.
🌐
GitHub
docs.github.com › en › desktop › making-changes-in-a-branch › viewing-the-branch-history-in-github-desktop
Viewing the branch history in GitHub Desktop - GitHub Docs
You can see details about any commit in GitHub Desktop, including a diff of the changes the commit introduced. ... In the left sidebar, click History.
🌐
Trupeer
trupeer.ai › home › tutorials › how to view commit history in github
How to View Commit History in GitHub
Use the Commits tab in the repository to view a chronological list of all commits along with their messages and timestamps. Click on a specific commit to see the changes made in that commit, including modified files and differences.
🌐
GitHub
docs.github.com › en › repositories › viewing-activity-and-data-for-your-repository › using-the-activity-view-to-see-changes-to-a-repository
Using the activity view to see changes to a repository - GitHub Docs
To see activity on a particular branch, select the BRANCH NAME dropdown menu, then click a branch name. Alternatively, within the dropdown menu, start typing a branch name into the search field.