Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Versions - how to add all new files

Tags:

svn

versions

I am using Versions application for Mac Os.

I am new to Versions. I have got a project that I modified recently - added a bunch of new files. Currently I manually add all new files into the repository (I have to expand all those folders with a yellow bead sign and select new files while holding APPLE key).

Is there a way to automatically add all new files from a certain folder into repository(if the folder itself is already under version control)?

Thanks.

like image 683
Ilya Suzdalnitski Avatar asked Dec 22 '22 08:12

Ilya Suzdalnitski


2 Answers

You should just skip using Versions for this task. Simply open your terminal and cd into that directory and issue:

svn add *
svn commit -m 'Adding a file'

then you are done.

like image 153
Shane C. Mason Avatar answered Jan 01 '23 19:01

Shane C. Mason


Select the topmost folder with the blue ? next to it, and choose Action > Add Item (command-option-A). That will recursively add everything in that folder.

like image 40
Dave DeLong Avatar answered Jan 01 '23 20:01

Dave DeLong