I have an application with which i manage the source control with git. One of the folders is just a copy of the contents of another folder that is in outside the app, in an svn-controlled repo. To be specific:
this folder:
<app root>/public/assets/players/millionaire
Just needs to use the contents of an svn repo with the url:
http://<my_domain>/charanga/elearning%20players/millionaire_DEPLOY
Currently my workflow is
- get notified that the svn repo has been updated
- go to the svn folder and do "svn update"
- rsync the contents of the svn folder (minus the .svn folders) into the relevant app folder
- "git status" to see the changes and "git commit" to commit them in.
This is kind of clumsy though. What are my options for incorporating the svn folder automatically? Can i avoid having all of the .svn folders in my git-controlled codebase? (There's no rational reason for this, i'd just like to keep it as clean as possible)
grateful for any advice - max
