Changes between Version 89 and Version 90 of UsingGitWithWebKit
- Timestamp:
- Jul 9, 2013, 11:17:43 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGitWithWebKit
v89 v90 168 168 * Using '''commit-log-editor''' with git will automatically insert the ChangeLog entry as your commit message 169 169 {{{ 170 git config core.editor "perl path/to/commit-log-editor"170 git config core.editor "perl Tools/Scripts/commit-log-editor" 171 171 }}} 172 172 If you want to make sure log gets regenerated from ChangeLog entry each time you modify an already existing commit, use --regenerate-log: 173 173 {{{ 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" 175 175 }}} 176 176 * 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.