Skip to content

Instantly share code, notes, and snippets.

@RodGreen
Created June 14, 2018 23:14
Show Gist options
  • Save RodGreen/7f010c608ea0a0ff64b0d4fba6c9267a to your computer and use it in GitHub Desktop.
Save RodGreen/7f010c608ea0a0ff64b0d4fba6c9267a to your computer and use it in GitHub Desktop.
Quick script to auto commit folders for svn
@echo off
setlocal ENABLEDELAYEDEXPANSION
FOR /D %%G in ("*") DO (
svn commit "%%~fG" --message="Committing %%~nxG"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment