Continuous Integration with Bamboo - reference
 Plan => Build => Deployment     Plan      Associate a repository, Write a trigger        SVN:     Dev server:    Points to 'develop' branch  As soon as developer commit the code in 'develop' branch it is automatically deployed in Dev server.  svn switch . (or) svn up   svn up -> has to be run by a cron in few seconds interval  svn switch ? <TODO>      Test server:    Points to a <tag>  A <branch> is created from Dev branch at certain point when the stories are ready for testing.  A <tag> is created from <branch> and deployed in Test server  svn switch <tag>  Testing happens in Test server  When bugs are found, they are fixed in <branch>.   <tag+1> is created from <branch> when it is ready for deployment in Test server  The cycle continues from steps 3 to 7       UAT server:    Points to a <tag>  When a QA certified <tag> is available from Test server it is deployed in UAT  svn switch <tag...