OK, a war story.
I came into a project in the middle (a year long project, they'd already been working on it about a year, and work continued for at least another year).
Dysfunctional points, in no particular order:
-When I came in, there was no source control. There were several different versions on different servers, no one was quite clear which one was definitive.
-Developers were hired by managers without any discussion with tech leads and assigned to jsp pages (without any guidance - fresh out of school!)leading to a nice mix of data presentation technologies, all of the "queries mixed into the jsp pages somewhere" variety.
-our client controlled the development process, and had their own onsite developers. We developed for them, they "owned" the oracle database. When we had to make changes, since it was a multi-day process to add a field, developers would just shoehorn values into an existing one. Like, there's an unused varchar field called "newsletter" so we put a list of delimited ids in it. Of course we don't document what's in the field or what it means.At one point I asked several members of the dev team (who'd been working on this part of the application) how a particular kind of record was saved, and where it was saved to. Nobody could even agree on what the developed componets actually did.
-The client had developed a system they were very proud of. The good part was an http caching system. The bad part was that they'd somehow decided that their cacheing system had to be a CVS front end. What this meant was that all development was done on eclipse using a plug-in that made all code edits actually function through a soap interface to their CVS server (imagine looking for a line of code when there's no search, you have no local copy of the code, and you can only look at one file at a time over a slow interface). There was a running appserver instance connected to this monstrosity, and when you "saved", your code was sent over a SOAP service which automatically compiled and loaded your code on the SINGLE running server (since you never had all the code you couldn't create your own local instance). Where you could preview your changes (assuming that none of the other 20 developers working remotely from 3 sites hadn't recently changed anything that might also reset the server. This was distinct from committing, which would then overwrite ALL the running code with the repository version. All developers shared the same server. Which often went down.
As an added bonus,as the server compiled the class files but didn't commit them to CVS, and deployments were made by copying the classfiles to production, there was no way to know what versions of the code were actually running, or even if they corresponded to versions that existed in the repository. They were very, very proud of this system.
-The project manager would often agree to changes with the client, but kept no written records. Many, many changes. One day he left at 3AM, ran a bulk eraser on his drive, and disappeared to start his own business (with, as it was rumored, poached clients).
The client eventually sued.