Changes between Version 55 and Version 56 of UsingGitWithWebKit
- Timestamp:
- Oct 20, 2010, 3:30:53 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGitWithWebKit
v55 v56 2 2 3 3 = Tips and Tricks for using Git with WebKit = 4 4 See also: 5 * [http://gitorious.org/webkit/pages/UsingMirrorWithGitSvn How to setup an always up-to-date git-svn mirror of QtWebKit] 5 6 * [wiki:"Moving to Git" Proposal for moving WebKit development to Git] 6 7 7 8 == Install == 8 9 9 Mac users: 10 10 * Update your Git install: http://code.google.com/p/git-osx-installer/ … … 21 21 22 22 == Checkout == 23 24 23 To checkout WebKit using git: 25 24 … … 51 50 52 51 == Updating == 53 54 52 If you're not tracking the Subversion repository the following command will fetch new commits from `git.webkit.org`: 55 53 … … 83 81 84 82 == Commit manually through git-svn directly == 85 86 83 If you have been granted commit access to WebKit's SVN repository it is possible to work entirely with git and to commit through `git-svn`, however using webkit-patch land (see next section) is encouraged since it deals with changelogs, commit logs and bugzilla for you. 87 84 … … 185 182 186 183 == Workflow == 187 188 184 If you are not familiar with Git and wish to see a a sample workflow for making modifications, see [wiki:HackingWebInspector#NowDoYourHacking the web inspector tutorial].