Chromium Embedded Framework中文文档 (SVN属性)

元气小坏坏 提交于 2020-03-28 18:32:29

转载自:http://www.cnblogs.com/think/archive/2011/10/06/2199692.html

Subversion properties

在CEF开发中,应当如下将Subversion配置文件配置成自动设置新文件的属性,不要使用svn:eol-style=native因为它会使得不同平台间的文件比较变得十分痛苦

# CEF-specific config file to put at ~/.subversion/config or %USERPROFILE%\AppData\Roaming\Subversion\config# Originally copied from http://src.chromium.org/viewvc/chrome/trunk/tools/buildbot/slave/config?revision=46073[miscellany]global-ignores = *.pyc *.user *.suo *.bak *~ #*# *.ncb *.o *.lo *.la .*~ .#* .DS_Store .*.swp *.scons *.mk *.Makefile *.sln *.vcproj *.rules SConstruct *.xcodeprojenable-auto-props = yes[auto-props]*.c = svn:eol-style=LF*.h = svn:eol-style=LF*.cc = svn:eol-style=LF*.cpp = svn:eol-style=LF*.def = svn:eol-style=LF*.obsolete = svn:eol-style=LF*.m = svn:eol-style=LF*.mm = svn:eol-style=LF*.idl = svn:eol-style=LF*.html = svn:eol-style=LF*.htm = svn:eol-style=LF*.xml = svn:eol-style=LF*.js = svn:eol-style=LF*.css = svn:eol-style=LF*.mock-http-headers = svn:eol-style=LF*.afm = svn:eol-style=LF*.txt = svn:eol-style=LF*.gyp = svn:eol-style=LF*.gypi = svn:eol-style=LF*.grd = svn:eol-style=LF*.xtb = svn:eol-style=LF*.py = svn:eol-style=LF*.pl = svn:eol-style=LF*.pm = svn:eol-style=LF*.sh = svn:eol-style=LF;svn:executable*.make = svn:eol-style=LFMakefile = svn:eol-style=LF*.bat = svn:eol-style=CRLF*.rc = svn:eol-style=CRLF*.txt = svn:eol-style=LF*.patch = svn:eol-style=LF*.png = svn:mime-type=image/png*.jpg = svn:mime-type=image/jpeg

*.pdf = svn:mime-type=application/pdf 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!