tortoisesvn - How many persons can work simultaneousy on the same file which is added into Tortioise SVN repository? -
how many persons can work simultaneousy on same file added tortioise svn repository?
"unlimited" , "one" correct answers. let me explain detailfully.
unlimited
because svn designed collaborative development without imposing limits on number of people can contribute development
one
because developer being able commit modifications 1 possesses latest version of file. further modifications require merging previous modifications current ones.
however, in practice
you organize team in order small groups of people working on same file simultaneously, or commit small , simple modifications shared files. affects number of required merge/conflict resolution operations.
simple example: if have single global language file, can allow every developer add few lines @ bottom of without changing other lines. translates easy merging, since modifications "add lines"
anyway, may want prevent people simultaneously work on same file locking it.
Comments
Post a Comment