Skip to content

Instantly share code, notes, and snippets.

@nacin
Created November 24, 2013 12:40
Show Gist options
  • Select an option

  • Save nacin/7626850 to your computer and use it in GitHub Desktop.

Select an option

Save nacin/7626850 to your computer and use it in GitHub Desktop.

Revisions

  1. nacin revised this gist Nov 24, 2013. 1 changed file with 3 additions and 2 deletions.
    5 changes: 3 additions & 2 deletions london-contribute.md
    Original 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://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`
  2. nacin created this gist Nov 24, 2013.
    29 changes: 29 additions & 0 deletions london-contribute.md
    Original 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)