Snippets v2

Languages
My Snippets

Recursive Addition of files to SVN Login or Register to Bookmark this snippet

Description Bash

This script will do a 'svn status' then with those files that have not been added, it will 'svn add' them. This works recursively.

The Code Download
  1. #!/bin/bash
  2. svn st | grep ? | sed 's/^?[\t]*//;' | xargs svn add
Credits Contact JC

Added by JC on 13th July, 2010

Comments

There are no comments about this snippet.

Post Comment HTML is allowed

You must be registered and logged in to post a comment.

Login here to post a comment