What is the best way to maintain a history of functioning versions of your git repository?
It's so easy to branch and merge in git that we do it all the time. I've generally taken to using topic branches, only merging into master when a feature is complete. This works fine, but after several iterations the history of your master branch is a convoluted graph and it becomes very difficult to identify commits that represent a correctly functioning version of your application at any point in time.
I'm looking for advice on a workflow that enables me to easily retrieve a working (i.e. not in the middle of developing a feature) copy of my repo closest to a specified date. Another useful feature of this would be retrieving a list of commits that represent a functioning repository changing over time.
I realize this could be done manually i.e. examine the commit log and messages to find the last commit right before the next feature was started, or by running the test suite against each commit and filter by that. Those methods would be somewhat reliable, but I'm looking for a less haphazard way of doing it.