We’re merging design trac and unit tests trac…

We’re merging design.tracTrac Trac is the place where contributors create issues for bugs or feature requests much like GitHub.https://core.trac.wordpress.org/. and unit-tests.trac into core.trac (but keeping separate SVNSVN Apache Subversion (often abbreviated SVN, after its command name svn) is a software versioning and revision control system. Software developers use Subversion to maintain current and historical versions of files such as source code, web pages, and documentation. Its goal is to be a mostly compatible successor to the widely used Concurrent Versions System (CVS). WordPress core and the wordpress.org released code are all centrally managed through SVN. https://subversion.apache.org/. repos), taking advantage of Trac 0.12’s multi-repository support.

Everything is set up on Trac’s end, I just need two commands run:

trac-admin $ENV repository resync "tests"
trac-admin $ENV repository resync "design"

… where $ENV would be the path to trac-environs/wp-coreCore Core is the set of software required to run WordPress. The Core Development Team builds WordPress..

I then need two post-commit hooksHooks In WordPress theme and development, hooks are functions that can be applied to an action or a Filter in WordPress. Actions are functions performed when a certain event occurs in WordPress. Filters allow you to modify certain functions. Arguments used to hook both filters and actions look the same., one on the unit-tests.svn repo, and the other on design.svn, both pointing to the wp-core environment:

trac-admin $ENV changeset added "design" $REV
trac-admin $ENV changeset added "tests" $REV

#request, #svn, #trac