Edgewall Software

Changes between Initial Version and Version 1 of Ticket #12093, comment 4


Ignore:
Timestamp:
Jun 1, 2015, 4:38:32 AM (9 years ago)
Author:
Jun Omae

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12093, comment 4

    initial v1  
    1717{{{#!sh
    1818#! /bin/sh
     19tracenv=/path/to/env  # change with your Trac environment's path
    1920repos=/path/to/repos  # change with your repository's path
    2021while read oldrev newrev refname; do
     
    2324    else
    2425        git rev-list --reverse "$newrev" "^$oldrev" --
    25     fi | xargs trac-admin /path/to/env changeset added "$repos"
     26    fi | xargs trac-admin "$tracenv" changeset added "$repos"
    2627done
    2728}}}