The Artima Developer Community
Sponsored Link

Java Buzz Forum
Rsync

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Andrej Koelewijn

Posts: 594
Nickname: andrejk
Registered: Nov, 2002

Andrej Koelewijn is a Java and Oracle consultant
Rsync Posted: Oct 13, 2003 8:31 AM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Andrej Koelewijn.
Original Post: Rsync
Feed Title: Andrej Koelewijn
Feed URL: http://feeds.feedburner.com/AndrejKoelewijn
Feed Description: On Oracle, Java and OpenSource
Latest Java Buzz Posts
Latest Java Buzz Posts by Andrej Koelewijn
Latest Posts From Andrej Koelewijn

Advertisement
We use pvcs here for version control. Problem is that pvcs is only available on a unix server, and i do most of my development using toad on my windows laptop. It's easy to synchronize two directories. one on my laptop, and one in my home directory on unix with rsync. Rsync is part of cygwin rsync -auv --rsh="ssh -l <username>" --exclude "*.swp" --exclude "*.log" --exclude "*~" <unix_server>:<home_directory>/<project_folder> . rsync -auv --rsh="ssh -l <username>" --exclude "*.swp" --exclude "*.log" --exclude "*~" . <unix_server>:<home_directory>/<project_folder> This works ok, for except for one small problem. When a file doesn't change, size doesn't change, and the timestamp doesn't change, but the file mode access permission do change, these are not synchronized. This happends when i a file out of pvcs to lock it, the file permission change so that it is writable. After using rsync, the file will still be unwritable on my laptop....

Read: Rsync

Topic: Wake me up when the JVM actually ships with Palm Previous Topic   Next Topic Topic: Winter is Coming

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use