Hi,

It should be simply a matter of doing the following:


   - Checkout your working copy
   - Change to your working copy directory
   - Find all the files named *.sh and set the svn property 'svn:eol-style'
   to the value of 'LF'

This tells subversion to convert the line endings of the file to contain
only linefeeds upon checkout, regardless of the type of system it is
checked out to. Because scripts are for linux/unix anyway this setting is
appropriate. On linux/unix using the command line client the above steps
look something like the following:

# Checkout the working copy
svn co https://hostname.domain/path/to/repo/ my-project

# Change to the working copy directory
cd my-project

# Find all .sh files and set the line ending style to linefeed only
find . -type f -name '*.jsp' | xargs svn propset svn:eol-style LF

If you're not using the command line you can just google for 'setting
svn:eol-style <tool-of-choice>' and use the instructions to set the
property to 'LF' for linux/unix files.

Good luck,

Brent

On Tue, Dec 25, 2012 at 3:32 PM, El alaoui Mohamed Reda <
inforedas...@gmail.com> wrote:

> i'm using subversion but i don't understand how i can make it in jenkins
> please !!
>
> can you explain me !!!
>
>
> 2012/12/25 Brent Atkinson <brent.atkin...@gmail.com>
>
>> roperty
>
>
>
>
> --
>
>  *Mohamed Reda, El alaoui*
>
> *
> *
>

Reply via email to