blob: 3ed77e725e3b9f8cdb55c8e37d28d94271d618b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
> * Determining what to commit.
>
> You'd have to have RCS keep a log of all versioned files it
> touched, and extend .commit() to accept the keyword list "files"
> and commit only those files. This is doable, but maybe not worth
> the trouble.
On the other hand, just attemting to commit everything after each
command would make it nice and easy to commit bug fixes:
be --auto-commit status XYZ fixed
which would commit whatever changes you had outstanding with an
appropriate commit message.
|