Bug 30951

Summary: Teach git to ignore some files
Product: WebKit Reporter: Adam Barth <abarth>
Component: Tools / TestsAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
See Also: https://bugs.webkit.org/show_bug.cgi?id=224227
Bug Depends on: 223988    
Bug Blocks:    
Attachments:
Description Flags
Patch v1
none
Patch v1
none
Patch v1
none
Patch v1
none
Patch v1
none
Patch v1
none
Patch v1 mrowe: review+

Description Adam Barth 2009-10-30 01:23:56 PDT
git clean is a PITA at the moment because it blows away our xcode settings.  Let's add a .gitignore file to make our lives easier.  Patch forthcoming.
Comment 1 Adam Barth 2009-10-30 01:25:40 PDT
Created attachment 42184 [details]
Patch v1
Comment 2 Adam Barth 2009-10-30 01:28:48 PDT
Created attachment 42185 [details]
Patch v1
Comment 3 Adam Barth 2009-10-30 01:29:53 PDT
Created attachment 42186 [details]
Patch v1
Comment 4 Adam Barth 2009-10-30 01:33:57 PDT
Created attachment 42187 [details]
Patch v1
Comment 5 Adam Barth 2009-10-30 01:34:28 PDT
Created attachment 42188 [details]
Patch v1
Comment 6 Adam Barth 2009-10-30 01:39:15 PDT
Created attachment 42190 [details]
Patch v1
Comment 7 Adam Barth 2009-10-30 01:47:34 PDT
Created attachment 42193 [details]
Patch v1
Comment 8 Mark Rowe (bdash) 2009-10-30 01:49:05 PDT
Comment on attachment 42193 [details]
Patch v1

> diff --git a/.gitignore b/.gitignore
> new file mode 100644
> index 0000000..aa7fc51
> --- /dev/null
> +++ b/.gitignore
> @@ -0,0 +1,6 @@
> +*.mode*
> +*.pbxuser
> +*.perspective*
> +*.pyc
> +build/
> +WebKitBuild/

Technically this last one should be /WebKitBuild/ so that it only matches at the root of the repository.
Comment 9 Adam Barth 2009-10-30 01:56:07 PDT
Committed r50325: <http://trac.webkit.org/changeset/50325>
Comment 10 Jeff Johnson 2009-12-20 07:30:57 PST
*** Bug 25841 has been marked as a duplicate of this bug. ***