Thread: hints about managing multi-programmers projects

  1. #1
    Registered User
    Join Date
    Oct 2003
    Posts
    106

    Question hints about managing multi-programmers projects

    Hello, I was wondering about managing code source files between many programmers: should everyone "sign" in the code every modification he does? Should the file being modified by a programmer be locked to other programmers? Is there any utility which "syncronize" two text files? Would this be a semplification? And what's about the big opensource projects, where the files aren't lockable and parallel modifications are to be expected? I'm wondering myself managing thousand source files coming from the community....terrible!!:-)

    Thanks

    BrownB

  2. #2
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    I think one of the basic tools would be a revision control system. A programmer would commit code that passes the tests, and merging would mean no need for locking of files. Such a system would also handle "synchronisation" of source files, possibly by merging automatically if possible, and getting a programmer to resolve conflicts otherwise.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Multi Language projects
    By TankCDR in forum C++ Programming
    Replies: 3
    Last Post: 01-15-2005, 10:10 PM
  2. Multi File Projects
    By Travis Dane in forum C++ Programming
    Replies: 12
    Last Post: 12-25-2002, 07:48 PM
  3. Recruiting programmers for SDL project(s)
    By Golden Bunny in forum A Brief History of Cprogramming.com
    Replies: 8
    Last Post: 05-23-2002, 06:44 AM
  4. Programming Puns
    By kermi3 in forum A Brief History of Cprogramming.com
    Replies: 44
    Last Post: 03-23-2002, 04:38 PM