So I decided to install the Windows version of Git locally (I do Unix web dev but also .NET dev, so seems circuitous to run Git on UNIX for my .NET projects).
For the web development work I'll just deploy it myself with FTP, but wanted to ask: is there any convenient way to have Git build a directory structure for a subset of files, such as all the files in a particular branch?
For example: say I have this web server file structure
/public_html/index.php
/public_html/config.php
/public_html/style/style.css
/public_html/style/typography.css
locally I modify only index.php and style.css
it would be nice if there was some way to "checkout" these files and have it build their full file paths. In Visual Source Safe, it actually stores all your files in the VSS database. So you can delete you working copy, and checkout a few files, and it will write them to your working directory in their appropriate directory structures. Is there something like that in GIT? if so then I could just export the modified files and upload the root folder (/public_html) to the server