Edgewall Software

Changes between Version 20 and Version 21 of CommitTicketUpdater


Ignore:
Timestamp:
May 10, 2016, 1:07:42 AM (8 years ago)
Author:
Ryan J Ollos
Comment:

Document issue discussed in #11478.

Legend:

Unmodified
Added
Removed
Modified
  • CommitTicketUpdater

    v20 v21  
    5353    * Values: //true//, //false//
    5454
     55== Sync Existing Commits
     56
     57The `trac-admin` command that is executed in the post-commit hook can also be executed from the command line to update tickets for commits that were made prior to enabling !CommitTicketUpdater. For example, to synchronize commits in the range !r1 to !r100 for a Subversion repository:
     58
     59{{{#!sh
     60for r in $(seq 1 100); do
     61  trac-admin $env changeset added $repos $r;
     62done
     63}}}
     64
    5565== Usage
    5666