Changes between Version 89 and Version 90 of UsingGitWithWebKit


Ignore:
Timestamp:
Jul 9, 2013 11:17:43 AM (11 years ago)
Author:
dbates@webkit.org
Comment:

Substitute "Tools/Scripts" for "path/to" in git config core.editor lines so as to be consistent with the documentation for git config merge.changelog.driver.

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitWithWebKit

    v89 v90  
    168168 * Using '''commit-log-editor''' with git will automatically insert the ChangeLog entry as your commit message
    169169{{{
    170   git config core.editor "perl path/to/commit-log-editor"
     170  git config core.editor "perl Tools/Scripts/commit-log-editor"
    171171}}}
    172172  If you want to make sure log gets regenerated from ChangeLog entry each time you modify an already existing commit, use --regenerate-log:
    173173{{{
    174   git config core.editor "perl path/to/commit-log-editor --regenerate-log"
     174  git config core.editor "perl Tools/Scripts/commit-log-editor --regenerate-log"
    175175}}}
    176176 * If you do not manually generate a ChangeLog entry and you have staged changes in your working tree, '''commit-log-editor''' will automatically generate a commit message in the WebKit ChangeLog entry format when you do 'git commit'. You can control this behaviour with the git configuration option '''webkitGenerateCommitMessage''' on a global or per-branch basis.