How does the LLVM server keep the git svn mirror up to date? Are there hooks in the svn server that automatically update the git mirror? If so, are any of these tools public? I ask because I'm looking at setting up some mirrors at work and I may (I stress _may_) have a way to make git mirrors interact somewhat sanely with each other. But I need something that keeps a git mirror in sync with an svn respository and I don't want to reinvent the wheel. Thanks! -Dave
Hi David,> How does the LLVM server keep the git svn mirror up to date? Are there > hooks in the svn server that automatically update the git mirror?Yes> If so, are any of these tools public?It's just "git svn fetch" -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
Anton Korobeynikov <anton at korobeynikov.info> writes:> Hi David, > >> How does the LLVM server keep the git svn mirror up to date? Are there >> hooks in the svn server that automatically update the git mirror? > Yes > >> If so, are any of these tools public? > It's just "git svn fetch"Ok, that's basically what I was going to do. Thanks! -Dave