uzay95
uzay95

Reputation: 16642

SVN commit batch

I know there is a command that updates the changes like

c:\svn up <working directory>

i wonder if there is any command line statement which can commit the changes.

..: Any help would be appreciated :..

Upvotes: 1

Views: 5491

Answers (4)

Michael Hackner
Michael Hackner

Reputation: 8645

In addition to consulting the SVN documentation, you can also run

svn help

for a list of all the commands. Then you can get specific help by running

svn help commit

for example.

Upvotes: 2

Achim Tromm
Achim Tromm

Reputation: 386

cd <working directory>    
svn commit -m "your comment"

Upvotes: 1

unwind
unwind

Reputation: 400109

By default, check in/commit will commit all changed files:

$ svn ci -m "Finally fixed the bug that caused the printer to erupt into flames"

Upvotes: 0

Dean
Dean

Reputation: 5946

C:> SVN commit (your path here)

would do the trick

you might want to use the Svn red book

Upvotes: 1

Related Questions