single-file

How to retrieve a single file from specific revision in Git?

I have a Git repository and I'd like to seem how some file looked a few months ago. I found the revision at that date, it's: 27cf8e84bb88e24ae4b4b3df2b77aab91a3735d8. I need to see what did one file look like and also save that to file. I managed to see the file using gitk, but it does not have an option to save it. I tried with command...

Delphi-5 single-file storage solution?

Hi! Is there a Delphi-5 solution to easily integrate single-file storage into existing code? I would like to have files like Java *.jar or Openoffice document files which are zipped/compressed files and folders but with their own file extension. Edit: I know some ZIP capable components but in a nutshell I want to access files within th...

How can you temporarily roll back a single file to a known good state in svn?

I'm currently trying to return a single file to the state of a previous revision in subversion. I don't want to commit the file, just leave it as a modification to the working copy for a bit. How would I do that? Edit: It was suggested that I use checkout, but if I run the command that I would expect to work I get: $ svn help checkou...

Single-file ASPX and LINQ

Hey, there's a CMS system and there's aspx page without backend file. I can add server code straight to the .aspx wrapped with <script language="C#" runat="server"> tag. But compiler generates an error because I use LINQ in my code and I don't have using System.Linq; statement anywhere. And I can't add using inside .aspx file (error aga...