Workflow: suggest a versioning and file control for Designer and Developer

2

Our company are having hard time managing project files and managing versions of PSD, HTML, PHP, and CSS files.

Can anyone recommend a good software or workflow to handle files and versions.

Here's my common scenario:

I work for a project in my computer, it could be a Website mockup or a coding project. I then save all the files locally in my workstation. I'll then upload all the project files in the server connected in our network to have a backup. In my files, I usually append a "r1" for revisions, like
"WebsiteMockup_r1" or "WebsiteMockup_r2".

I need somehow to synchronize all my local files to the server and have some versions options.

Pennf0lio

Posted 2011-06-25T06:43:16.527

Reputation: 1 403

Answers

0

For your HTML, PHP, CSS, and other text-based files, I recommend a source code management system like Git. You can host this on your own server, or use a third-party hosting solution such as GitHub. This will allow you to merge multiple people's changes, view the files as they were at any point in the past, and work on multiple new features/changes at the same time without messing things up. If you want some more information, this guide might be appropriate: Version Control for Designers.

(This will also work for your PSD files and any other files, but you won't be able to merge changes very well with these, just track version history.)

Git also supports tagging which will let you keep track of version names such as "v1".

jtbandes

Posted 2011-06-25T06:43:16.527

Reputation: 8 350

0

jtbandes is on the right track, but I would not recommend Git (at least not initially). Perforce is free with certain constraints (depending on the size of your project), and it has good support for version controlling Photoshop PSD files.

ta.speot.is

Posted 2011-06-25T06:43:16.527

Reputation: 13 727

It would be useful to list the reasons you would not recommend Git for this specific use-case. – RedGrittyBrick – 2011-06-25T10:30:13.313

Because, as jtbandes points out, it has poor support for graphical files. – ta.speot.is – 2011-06-25T11:15:17.460

Would I be right in thinking that Perforce adds check-in/check-out menu options to Photoshop but doesn't merge changes or anything else? – RedGrittyBrick – 2011-06-25T13:02:27.690