You are here: Foswiki>ATLAS Web>SVNTips (17 Sep 2007, Carsten)Edit Attach

Tips & Tricks with svn

Adding all not yet added files to a repository

This should work:

 svn status|grep ^?|awk '{print $2;}'|xargs svn add

or without the grep
 svn status | awk '/^\?/ {print $2;}'|xargs svn add
Topic revision: r1 - 17 Sep 2007, Carsten
This site is powered by FoswikiCopyright © by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding Foswiki? Send feedback