This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo tsvn.bat was too useful to me, so I moved it away from gists: | |
@echo https://github.com/marcows/tsvn.bat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Create a git repository on top of a Subversion working copy (all files added, | |
# including files in different SVN repositories checked out via svn:externals | |
# property). Additionally .gitginore files are added according to svn:ignore | |
# properties. | |
# Used for local git workflow ability with official SVN repo. Alternative to | |
# 'git-svn' with less possibilities, but faster and without compatibility | |
# concerns. The git repo is meant to be a throw-away repository. | |
# |