branch - Access url using branches in svn -


i have test server http domain pointing repository on server. have different developers working on same code, decided create branches each developer. question is, every 1 commits code own branch, should able test using url. how can make possible have separate url's every branch within same domain.

sorry, if repeated, wasn't able find similar, not on stackoverflow or on internet solve issue exactly.

you shouldn't running website directly out of repository in first place. subversion isn't meant used in fashion, , encounter problems code not working when compared doing proper deployment.

each developer should capable of testing code own workstation, , commit code once working (or @ other logical checkpoints).

if need code running on server, perhaps integrate else can't loaded on workstations, best practice deploy server after committing, either via post-commit hook script or continuous integration system. achieve this, each developer need own virtual directory or vhost on server code deployed into.

side note: multiple developers working on code not automatically require have per-developer branches. keeping in sync means you'll need perform numerous merges on regular basis.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -