SVN- How to commit multiple files in a single shot -
i tried commit multiple files across different directories in single shot below,
svn commit –m”log msg” mydir/dir1/file1.c mydir/dir2/myfile1.h mydir/dir3/myfile3.c etc etc since, wanted exclude files commit list i’ve placed each file name in command line above. put in notepad , came 25 files. when copy , paste on command line, last few files missing , guess might command line buffer limitation (?). there option can increase buffer length?
is there option can put files in text file , give argument svn commit?
you can use svn changelist keep track of set of files want commit together.
the linked page goes lots of details, here's executive summary example:
$ svn changelist my-changelist mydir/dir1/file1.c mydir/dir2/myfile1.h $ svn changelist my-changelist mydir/dir3/myfile3.c etc. ... (add files want commit @ own rate) $ svn commit -m"log msg" --changelist my-changelist
Comments
Post a Comment