Changes between Version 72 and Version 73 of UsingGitWithWebKit


Ignore:
Timestamp:
Oct 25, 2011 12:12:00 PM (13 years ago)
Author:
jberlin@webkit.org
Comment:

Add instructions for how to tell git to ignore "changes" by file system crawlers when you are trying to commit

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitWithWebKit

    v72 v73  
    206206}}}
    207207
     208 * If there are file system crawlers on your system that might be touching your working tree (e.g. Xcode indexing), you should tell git to ignore st_ctime information when checking if paths in the working tree have changed:
     209{{{
     210git config --global core.trustctime false
     211}}}
     212
    208213== Ignores ==
    209214 * You can setup your git repository to ignore the same files that are ignored in the tracked Subversion repository with: (this will take some time)