
Originally Posted by
Qaridarium
this is one of the biggest problem with the catalyst: no user side regression testing with GIT-Bisect.
How so?
Code:
$ cd /
$ sudo git init
$ sudo <install driver>
$ sudo git add <...>
$ sudo git commit
...
$ sudo <update driver>
$ sudo git commit -a
...
$ sudo git bisect <whatever>
E-zy.
Git doesn't care what files are in your repository, whether they are satellite images of a secret military base (you would be surprised at how easy and fast it is to use git-bisect to find out when exactly that mysterious spy plane first appeared on the base), your Master's thesis or your personal copy of Wikipedia. It just keeps track of the state of your repository over time.
Now, if you are looking for an actual source code repository (which you're not supposed to have unless you signed an NDA) with meaningful commit history (keep on dreaming...), that's an entirely different matter.
Note: