Changes between Version 84 and Version 85 of UsingGitWithWebKit


Ignore:
Timestamp:
May 8, 2012 11:41:29 AM (12 years ago)
Author:
robert@roberthogan.net
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitWithWebKit

    v84 v85  
    218218{{{
    219219git 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{{{
     224git checkout -b 7000-2
     225git cherry-pick refs/heads/7000
    220226}}}
    221227