1
edit
Changes
SVN
,→svn commit
==Commit your changes==
===svn commit===
*This command sends all of your changes to the repository. When you commit a change, <b>you need to supply a log message</b>, describing your change.
<pre>
$ svn commit --message "Corrected number of cheese slices."
Sending sandwich.txt
Transmitting file data .
Committed revision 3.
</pre>
*If you've been composing your log message as you work, pass the filename that contains your message with the --file switch:
<pre>
$ svn commit --file logmsg
Sending sandwich.txt
Transmitting file data .
Committed revision 4.
</pre>
==More commands==