top | item 32040573

Ask HN: Non programming professionals, what do you use for version control

8 points| danhab99 | 3 years ago

I just got done helping a friend recover some gimp project they messed up when I realized, if I had a similar problem while coding I'd just use git to revert my mistakes. If you use computers to create any kind of content then you have to have some sort of system for tracking your work and collaborating. So what kind of tools exist for writers, digital painters, photographers?

21 comments

order

MilnerRoute|3 years ago

A while back I started storing my important files on Dropbox. That at least lets you revert to earlier versions - though I'm not sure how granular it is. I'm sure you can do the same thing with many other cloud-based sites.

As an added check, at key moments in a project I'll just add (or increment) the number at the end of my filename, so I'm now working in a new file and can "revert" back to the earlier version just by changing files.

sleightofmind|3 years ago

Yep. I like that approach for simple personal projects (the only kind I do). Sometimes I just append a date -- myHotNewIdea_9jul2022.txt

Same idea, though.

auxym|3 years ago

Mechanical engineering, most mid size or large orgs use "PLM" software (product lifecycle management) to handle "versioning" (revisions, change orders, etc) of CAD files, drawings and sometimes other engineering documents.

They tend to be complex, expensive and centralized software that require an entire IT team to set up and maintain. Sort of similar to ERP software, and in fact, they often get integrated with ERPs.

Smaller orgs tend to use nothing, or an ad hoc system of file/folder structures and spreadsheets, because they can't justify the cost of PLM. I wish there existed a lightweight option. Git doesn't work well with large binaries and it's merge-based workflow doesn't really apply to CAD anyways. PLM software usually use an exclusive check-out model. There is OnShape, a low cost cloud CAD start-up that was bought by Siemens, which has some PLM features I believe.

smt88|3 years ago

Some of my friends use Time Machine for local files, or they use cloud software (e.g. Figma, Google Docs) that store version history by default.

softwaredoug|3 years ago

Nevermind version control, I remember an unfortunate problem in the 90s was just forgetting to hit “save” periodically before a crash or power failure occurred. At one programming completion they started the day getting participates to chant “save your work!” I still habitually type CMD s like my life depends on it.

tbihl|3 years ago

I used to habitually hit Ctrl+s win+L when I engaged my legs to get out of my chair.

Unfortunately, my work computer these days is too slow to take either of those actions so lightly.

BMc2020|3 years ago

I would save a copy of my main excel spreadsheet with the date as the file name. Once a day. Not perfect but it worked.

subtra3t|3 years ago

Wouldn't that be very inefficient though?

mikewarot|3 years ago

Back in the MS-DOS days, it was a bunch of pkzip archive files on floppy diskettes.

Saving a file with different names on occasion seems to be the way the rest of the world does it.

My child does a ton of different layers in her art program, each of which is a separate project... that get saved periodically.

sleightofmind|3 years ago

For text-only stuff -- programming and writing -- I find the simple, ancient, RCS program to be sufficient, and pretty doggone easy to learn/use.

comrad|3 years ago

For all binary and not complicated setups subversion works very straight forward

spindle|3 years ago

ZFS snapshots every 15 minutes

aspyct|3 years ago

Oh, that's pretty extreme. May I ask what job you do and why you need such fine grained history?

themadturk|3 years ago

Git for writing, but then I’m a nerd even though I don’t code.