Svn update paths from a file in command line. How? Is it possibly? -


i have lot of file paths in file should updated. not know, how can this. tried use < operator, not working. if update 1 one, takes long time.

any idea?

what can in such case use svn's changelist mechanism.

you can create own list first:

$> svn changelist mylist /src/cpp/foo $> svn changelist mylist /src/cpp/bar 

and can use during update this:

$> svn update --changelist mylist 

this way, file in list mylist updated.

note can use changelists commit files only.


Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -