Thread: Looking for some archiving utility

  1. #1
    Registered User lobo's Avatar
    Join Date
    Oct 2001
    Posts
    71

    Looking for some archiving utility

    I'm working on not-small project with several source files, i perform backups regularly. It gets bit difficult/stupid/boring. I don't want just to pack all cpp,h,rc files and mark the archive as mm-dd-yy, i only archive copy of file if it has been modified since last backup. Hope that gave some idea of what am i looking for:

    Does anyone know some utility to do this for me? Thx.

  2. #2
    Me -=SoKrA=-'s Avatar
    Join Date
    Oct 2002
    Location
    Europe
    Posts
    448
    I think you're looking for a versioning system. One of the most popular is CVS, which stores diff files every time you check in the code. The problem might be that you need a CVS server. You can run one on your machine but it's a security risk if it's facing the Internet. There are also some sites that will host your project for you for free.

    NOTE: A diff file is a file that stores the differences between two versions of a file. It's generally a better idea to store diffs than a whole file.
    SoKrA-BTS "Judge not the program I made, but the one I've yet to code"
    I say what I say, I mean what I mean.
    IDE: emacs + make + gcc and proud of it.

  3. #3
    Registered User lobo's Avatar
    Join Date
    Oct 2001
    Posts
    71
    thx, i'll check that out

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. which utility in UNIX
    By Ron in forum C Programming
    Replies: 15
    Last Post: 06-19-2008, 08:23 AM
  2. Utility to debug memory leaks
    By viswas in forum C Programming
    Replies: 2
    Last Post: 04-12-2007, 11:57 PM
  3. Compression utility source code
    By Blizzarddog in forum C++ Programming
    Replies: 4
    Last Post: 11-07-2003, 08:15 PM
  4. writing a utility for format a file
    By powinda in forum C Programming
    Replies: 8
    Last Post: 02-12-2003, 06:55 PM
  5. Utility to see the file content in HEX Format.
    By mehuldoshi in forum C Programming
    Replies: 7
    Last Post: 07-30-2002, 10:42 PM