Opened 16 years ago
Closed 16 years ago
#459 closed defect (bug) (fixed)
use native line-endings where possible
Reported by: | nbachiyski | Owned by: | |
---|---|---|---|
Milestone: | Priority: | minor | |
Severity: | Version: | ||
Component: | Keywords: | ||
Cc: |
Description
Most of the files don't have eol-style
set. Thus a commit from Windows fills the files with \r
s.
Here's a little script to automate the process:
cd /path/to/bp/clean/trunk EXCLUDES="license.txt INSTALL-README.txt favicon.ico" svn propset -R svn:eol-style native * for f in $EXCLUDES; do svn revert $f; done
Add all files that need to be kept with specific eol-style in the EXCLUDES
list. Good candidates are license and config files.
Note: See
TracTickets for help on using
tickets.
Thanks, I've applied the property to all the files that need it.