Changes between Version 38 and Version 39 of UsingGitWithWebKit


Ignore:
Timestamp:
Jan 22, 2010 9:09:35 PM (14 years ago)
Author:
Chris Jerdonek
Comment:

Added note about "commit-log-editor" and dcommit.

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitWithWebKit

    v38 v39  
    8888git rebase -i HEAD~n
    8989}}}
    90  where n is the number of the number of commits you want to see in the interactive editor.
     90 where n is the number of commits you want to see in the interactive editor. You can use `git commit -a --amend` for example to amend an existing local commit and avoid creating additional commits that you may need to squash later on.
     91
     92 Also note that "git svn dcommit" does not use the "commit-log-editor" setting to create a commit message to store in the remote Subversion repository.  Rather, it simply uses the commit message already associated to the local commit. This is somewhat different from committing with Subversion, where "svn commit" does intervene with "commit-log-editor" to create a commit message for the remote repository.
    9193
    9294== WebKit Script support for Git ==