Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1110)

Side by Side Diff: .gitattributes

Issue 13811006: Clean up hidden git files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | .gitignore » ('j') | .gitignore » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # To enable automatic merging of ChangeLog files, use the following command:
2 # git config merge.changelog.driver "resolve-ChangeLogs --merge-driver %O %A %B"
3 ChangeLog* merge=changelog
4
5 # To enable smart diffing of ObjC[++] files, run the following commands:
6 # git config diff.objcpp.xfuncname "^[-+@a-zA-Z_].*$"
7 # git config diff.objcppheader.xfuncname "^[@a-zA-Z_].*$"
8 *.m diff=objc
9 *.mm diff=objcpp
Nico 2013/04/08 23:02:36 There's still objc code in webkit (?)
10 mac/*.h diff=objcppheader
11 */mac/*.h diff=objcppheader
12 */*/mac/*.h diff=objcppheader
13 objc/*.h diff=objcppheader
14 */objc/*.h diff=objcppheader
15 */*/objc/*.h diff=objcppheader
16
17 # To enable smart diffing of *.strings files, run the following command:
18 # git config diff.localizablestrings.textconv "iconv -f utf-16 -t utf-8"
19 *.strings diff=localizablestrings
20
21 *.vcproj eol=crlf
22 *.vsprops eol=crlf
23 *.sln eol=crlf
24
25 # For best performance, place rules for deep paths in the parent directory. 1 # For best performance, place rules for deep paths in the parent directory.
26 # For example: instead of "Source/WebCore/inspector/Inspector.json -crlf" here, 2 # For example: instead of "Source/WebCore/inspector/Inspector.json -crlf" here,
27 # place "Inspector.json -crlf" in Source/WebCore/inspector/.gitattributes 3 # place "Inspector.json -crlf" in Source/WebCore/inspector/.gitattributes
28 4
29 # Exclude these git specific files from archives created via git-archive. 5 # Exclude these git specific files from archives created via git-archive.
30 .gitignore export-ignore 6 .gitignore export-ignore
31 .gitattributes export-ignore 7 .gitattributes export-ignore
OLDNEW
« no previous file with comments | « no previous file | .gitignore » ('j') | .gitignore » ('J')

Powered by Google App Engine
This is Rietveld 408576698