Re: [CentOS] not able to check in all code into svn which creates problem in deployment

2011-01-19 Thread Nico Kadel-Garcia
On Wed, Jan 19, 2011 at 5:10 AM, Hakan Koseoglu wrote: > On 19 January 2011 06:09, Agnello George wrote: >> is there a way i can verify or write a script to check each file that is in >> the SVN  is same as that in the dev environment . > find . -type f | grep -v .svn | xargs md5sum > > then diff

Re: [CentOS] not able to check in all code into svn which creates problem in deployment

2011-01-19 Thread Nico Kadel-Garcia
On Wed, Jan 19, 2011 at 1:09 AM, Agnello George wrote: > HI > > i  have currently started to deploy code into our production environment > from the the dev environment, we deploy code on to the production  from the > svn , ( i do a svn export ) , some times not  code is checked into the svn > and

Re: [CentOS] not able to check in all code into svn which creates problem in deployment

2011-01-19 Thread m . roth
Les Mikesell wrote: > On Wed, Jan 19, 2011 at 12:09 AM, Agnello George > wrote: > >> i  have currently started to deploy code into our production environment >> from the the dev environment, we deploy code on to the production  from >> the svn , ( i do a svn export ) , some times not  code is chec

Re: [CentOS] not able to check in all code into svn which creates problem in deployment

2011-01-19 Thread Les Mikesell
On Wed, Jan 19, 2011 at 12:09 AM, Agnello George wrote: > i  have currently started to deploy code into our production environment > from the the dev environment, we deploy code on to the production  from the > svn , ( i do a svn export ) , some times not  code is checked into the svn > and it do

Re: [CentOS] not able to check in all code into svn which creates problem in deployment

2011-01-19 Thread Hakan Koseoglu
> On 19 January 2011 06:09, Agnello George wrote: >> is there a way i can verify or write a script to check each file that is in >> the SVN  is same as that in the dev environment . > find . -type f | grep -v .svn | xargs md5sum Obviously the above will compare the export vs. your dev env. The SVN

Re: [CentOS] not able to check in all code into svn which creates problem in deployment

2011-01-19 Thread Hakan Koseoglu
On 19 January 2011 06:09, Agnello George wrote: > is there a way i can verify or write a script to check each file that is in > the SVN  is same as that in the dev environment . find . -type f | grep -v .svn | xargs md5sum then diff the output from each server. -- Hakan (m1fcj) - http://www.hit

Re: [CentOS] not able to check in all code into svn which creates problem in deployment

2011-01-19 Thread Kai Schaetzl
You should better ask this on an SVN list. Thanks. Kai -- Get your web at Conactive Internet Services: http://www.conactive.com ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] not able to check in all code into svn which creates problem in deployment

2011-01-19 Thread John Doe
From: Agnello George >i have currently started to deploy code into our production environment from >the the dev environment, we deploy code on to the production from the svn , ( >i > >do a svn export ) , some times not code is checked into the svn and it does >not throw me a error . >is t

[CentOS] not able to check in all code into svn which creates problem in deployment

2011-01-18 Thread Agnello George
HI i have currently started to deploy code into our production environment from the the dev environment, we deploy code on to the production from the svn , ( i do a svn export ) , some times not code is checked into the svn and it does not throw me a error . is there a way i can verify or writ