Changes between Version 84 and Version 85 of UsingGitWithWebKit
- Timestamp:
- May 8, 2012, 11:41:29 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGitWithWebKit
v84 v85 218 218 {{{ 219 219 git config --global core.trustctime false 220 }}} 221 222 * If you have several bugs on the go at once and have a separate branch for each, it can be a pain to switch between branches because it will invariably clobber your build. To avoid rebuilding the world every time you switch branches this use the following simple trick. Let's assume you need to switch to the branch that contains your work for bug 7000 (in a branch called '7000'). 223 {{{ 224 git checkout -b 7000-2 225 git cherry-pick refs/heads/7000 220 226 }}} 221 227