Search code examples
svnwildcardprefix

How to commit all version controlled files in svn


I have a couple of files under version control: my_file.tex, my_ref.bib, Makefile and a file not under version control: my_file.pdf.

All the version controlled files are modified, I tried the command svn ci * -m "some message", but error svn E200009: './my_file.pdf' is not under version control.

I don't want the pdf file to be version controlled. Is there any simple command, other than commiting one by one, that could commit all the version controled files?


Solution

  • just do an

    svn commit -m "Commit message"
    

    Let subversion determine what to move.