I want to make a read only clone of an SVN server to work on the CD changes without affecting the Development team, but still having an up to date copy of what they are working on. I was considering git-svn, but was unsure if I could get it to read from one SVN but write to a different one. An alternative would be two git-svn instances (one for each SVN) and sync the two git instances, the push the changes to the read-only clones. i.e.
svn(dev) --clone--> git-svn(1) --push--> git-svn(2) --dcommit--> svn(read)
