I see lots of information about how to sync a git branch and an SVN branch, but I don't know how to check out an SVN tag in git.
I had hoped that I could maintain a demo
branch in SVN that was always ready for unplanned customer demonstrations. I found out the hard way this morning that repeatedly merging from master to the demo
branch won't work. (See https://stackoverflow.com/a/14173021/2596664.) I decided to try using svn copy
to create tags called demo1
, demo2
, etc instead. Now I don't know how to access those tags from git. I told git I've used the standard SVN layout, but cannot find any information about how to access the tags
part of SVN. How do I access it? If there's a better way to meet my requirement for "a demo
branch in SVN that was always ready for unplanned customer demonstrations," I'd love to hear about it.