Changes between Version 48 and Version 49 of UsingGitWithWebKit
- Timestamp:
- Jul 9, 2010, 3:54:12 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGitWithWebKit
v48 v49 72 72 }}} 73 73 74 == webkit-patch, check-webkit-style and git ==75 76 webkit-patch commands all work with git. By default all webkit-patch commands will treat all changes in your branch as a single commit (i.e. all local commits + working copy changes get uploaded/committed as a single commit). To operate on a specific commit, use --git-commit=commitish or "-g commitish". "commitish" can be a single commit (e.g. HEAD^), a commit range (e.g. HEAD~3..HEAD~1, operates on HEAD~2 and HEAD~1 as a single commit) or the working copy (i.e., HEAD..).77 78 74 == Commit manually through git-svn directly == 79 75 … … 98 94 99 95 == WebKit Script support for Git == 96 97 webkit-patch and check-webkit-style commands all work with git. By default all webkit-patch commands will treat all changes in your branch as a single commit (i.e. all local commits + working copy changes get uploaded/committed as a single commit). To operate on a specific commit, use --git-commit=commitish or "-g commitish". commitish can be a single commit (e.g. HEAD~1), a commit range (e.g. HEAD~3..HEAD~1, operates on HEAD~2 and HEAD~1 as a single commit) or the working copy (i.e., HEAD..). 100 98 101 99 The various scripts in `WebKitTools/Scripts` have been made to work pretty well with Git. Here are some