.gitignore for Windows Driver VS projects

Is there an existing .gitignore template for Windows Driver Visual Studio projects? Or please, could someone at least give me general guidelines on which files should I not version control? I’m using a .gitignore similar to this one for general Visual Studio projects (https://github.com/github/gitignore/blob/master/VisualStudio.gitignore) but when I tried to build the project from a GitHub zip file on another machine, I keep getting error: Verification error: Driver package has no driver version.

Thanks in advance!

The root of the problem (verification error) apparently was that the inf file was getting corrupted either by Windows’ or Github’s handling of zipped files. The problem is solved now (clone repository instead of downloading a zip file from Github). Thanks anyway!