augustozuniga / arisgames

Automatically exported from code.google.com/p/arisgames
MIT License
1 stars 0 forks source link

SVN Needs cleaning #56

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
checkouts about 4,000 files from the PhoneClient and then gives an
error on a filename with a tilde at the end:

svn: Can't check path 'aris\iPhoneClient\build\ARIS.build\Distrib
ution-iphonesimulator\ARIS.build\Objects-normal
\i386\InventoryListViewController
.o~>': The filename, directory name, or volume label syntax is
incorrect.

Any Windows user would get that error.

The fix is to remove the files with tilde at the end from the
repository.  This check in of files with tilde at the end would be
prevented by updating your "config" file in the ".subversion"
directory to have a global-ignores line that tells subversion to
ignore files that are a by-product of the build process.  For example:

global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store
build-mac build-classic build-gcc sysbuild *Data *.macyucky version.h
version.c *.sit svn-commit* *.mode1 *.pbxuser build pathdef.m* *.class
*objinfo.txt *-info.txt files-to-exclude.txt *.tar.gz *.zip *.def
*.mxo

Original issue reported on code.google.com by mrdavidg...@gmail.com on 14 Jul 2009 at 6:55