Skip to content

Instantly share code, notes, and snippets.

View marcows's full-sized avatar

Markus Heidelberg marcows

  • cab Produkttechnik
  • near Karlsruhe, Germany
View GitHub Profile
@marcows
marcows / tsvn.bat
Last active October 20, 2019 14:23
TortoiseSVN command line client wrapper
@echo tsvn.bat was too useful to me, so I moved it away from gists:
@echo https://github.com/marcows/tsvn.bat
@marcows
marcows / git-ontop.sh
Last active November 13, 2020 12:22
Create a git repository on top of a Subversion working copy.
#!/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.
#