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
Post a Comment