Created
November 24, 2013 12:40
-
-
Save nacin/7626850 to your computer and use it in GitHub Desktop.
Revisions
-
nacin revised this gist
Nov 24, 2013 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,6 @@ * http://make.wordpress.org/core/ * http://make.wordpress.org/core/handbook/ * http://core.trac.wordpress.org/ The old "built" repository: * `svn checkout https://core.svn.wordpress.org/trunk` -
nacin created this gist
Nov 24, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ http://make.wordpress.org/core/ http://make.wordpress.org/core/handbook/ The old "built" repository: * `svn checkout https://core.svn.wordpress.org/trunk` The new hotness repository: * `svn checkout https://develop.svn.wordpress.org/trunk` Git mirror: * `git clone https://github.com/WordPress/WordPress.git` Creating a patch: * `svn diff > ~/12345.patch` * `git diff --no-prefix > ~/12345.patch` Applying a patch: * `patch -p0 < ~/Downloads/12345.patch` Basics of Trac * logging in with your WordPress.org username * finding tickets * custom queries * reports 3/4, 5/6 * commenting (keywords - has-patch, close) * new ticket form * what makes a good bug report? What different pieces of data might you want to include? https://gist.github.com/Shelob9/7517200 (NOT A CHECKLIST)