1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How do you Prevent File Overwriting with Multiple Programmers? [HELP]

Discussion in 'Programming' started by Chris Munch, Nov 29, 2010.

  1. #1
    I have a few programmers working from different locations on the same site.

    Generally they are specialist so one might be good at making plugins, other is optimizing content, other is doing security, other is doing design.

    There's a chance they might end up working on the same file, and overwrite each others work.

    How do I stop this? Is it possible for them to lock out certain files.

    I know programs like Dreamweaver have this option, but chances are they will all have their own programs they use.
     
    Chris Munch, Nov 29, 2010 IP
  2. drhowarddrfine

    drhowarddrfine Peon

    Messages:
    5,428
    Likes Received:
    95
    Best Answers:
    7
    Trophy Points:
    0
    #2
    This is what git and subversion are for. Otherwise, the only way is to have a central authority that checks in/out code from a repository so no one overwrites the main code.
     
    drhowarddrfine, Nov 29, 2010 IP
    Chris Munch likes this.
  3. longcall911

    longcall911 Peon

    Messages:
    1,672
    Likes Received:
    87
    Best Answers:
    0
    Trophy Points:
    0
    #3
    If they are using Visual Studio, they may be more comfortable with Visual Source Safe. If you/they have no preference, my recommendation is the open source subversion.

    It takes a little work to bring your projects under source control, but it is essential when you have more than one person working on the project.
     
    longcall911, Nov 29, 2010 IP
    Chris Munch likes this.
  4. Chris Munch

    Chris Munch Peon

    Messages:
    235
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Thanks guys.

    So would the next step be simply getting one of my developers to install subversion?
     
    Chris Munch, Dec 2, 2010 IP
  5. longcall911

    longcall911 Peon

    Messages:
    1,672
    Likes Received:
    87
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Yes, at the bottom of this page are choices for a few different 'builds' of subversion. http://subversion.apache.org/packages.html

    I happen to like this one best. It was easy enough for me to install: http://www.visualsvn.com/server/ and it is of course free. :)
     
    longcall911, Dec 2, 2010 IP