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 }}} |