Quick question, as the title says: Can I find the Full Commit History of a project anywhere?
Dashboard only holds the six most recent commits and I “need to go deeper”.
Using command line git you can go as far back as you need. Make sure you have git installed and go to the directory where you files are stored in a command line. Typing “git log” will give you the full commit history.
2 Likes
As Johan said, the root folder of your project is a clone of your git repository. You’re able to use command line git or you can add the folder as a repository to a graphical git tool such as GitHub for Desktop, SourceTree, Git Tower or similar.
1 Like