45 | | sometime also called commit |
| 49 | sometime also called commit, does the opposite of checkout or update, it upload changes made to the local the to the server. The syntax is ''svn ci -m <commit message> <local-path>'', if <local-path> is omitted, the current directory is assumed, if -m <commit message> is ommited, an editor will pop up where you can (and should) write a meaningful commit message. |
| 50 | |
| 51 | this will checkin the current directory including subfolders with the comment "initial upload" |
| 52 | {{{ |
| 53 | svn ci -m "initial upload" |
| 54 | }}} |
| 55 | |
| 56 | A checkin is only possible if the local version is up-to-date. if it isn't you will get an error, and the commit will fail. the solution then is to do an [wiki:SVN#update(up) update]. |
| 57 | |