Reputation: 3889
Basically this question but for subversion.
I am tired of missing a file or adding too many changes.
I doubt it matters, but I am using Emacs as my editor.
Upvotes: 2
Views: 61
Reputation: 50054
The subversion package contains the elisp module psvn - a subversion interface for emacs. You can start it with M-x
svn-status
. Mark the to be committed files with m
and start the commit with c
.
If you want to see the complete diff when entering the commit message, set the emacs variable svn-log-edit-show-diff-for-commit
to t
.
Upvotes: 1