Changes between Version 6 and Version 7 of CodingGuidelines/SubmittingPatches


Ignore:
Timestamp:
Nov 20, 2011, 7:59:31 PM (12 years ago)
Author:
kallisti5
Comment:

change svn references to git references

Legend:

Unmodified
Added
Removed
Modified
  • CodingGuidelines/SubmittingPatches

    v6 v7  
    1313
    1414=== Preparing to create patch file ===
    15  * Create patches from within the ''HAIKU_TOP'' directory. This is the directory that contains ''configure'' and typically is ''haiku/'' or ''buildtools/''
    16         * {{{ svn stat }}} will display which files are modified, added, or deleted
    17         * {{{ svn diff path/to/modified/files additional/paths/are/allowed/ > ~/DescriptiveName.patch }}}
    18         * ''Note:'' If patching newly created files, {{{ svn add <path-to-new-file> }}} needs to be done before {{{ svn diff }}}
     15 * Create patches from within the ''HAIKU_TOP'' directory. This is the directory that contains ''configure'' and typically is the ''haiku/'' or ''buildtools/'' branch.
     16        * {{{ git status }}} will display which files are modified, added, or deleted
     17        * Perform a git diff...
     18                * {{{ git diff > ~/DescriptiveName.patch }}}
     19                * {{{ git diff or/specify/per/file or/specify/directory/ > ~/DescriptiveName.patch }}}
     20        * ''Note:'' If patching newly created files, {{{ git add <path-to-new-file> }}} needs to be done before {{{ git diff }}}
    1921
    2022=== Submitting the patch ===
     
    3133
    3234You may want to either subscribe to or read the [http://www.freelists.org/list/haiku-commits haiku-commits] mailing list archives. It is quite common for the discussion of recently committed code to occur on this list.
    33