<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Syncing Files</title>
	<atom:link href="http://www.scottwarren.info/2008/02/24/syncing-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scottwarren.info/2008/02/24/syncing-files/</link>
	<description>A Blog About a Guy With Too Many Hobbies</description>
	<lastBuildDate>Tue, 31 Jan 2012 11:47:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Scott Warren</title>
		<link>http://www.scottwarren.info/2008/02/24/syncing-files/#comment-126</link>
		<dc:creator>Scott Warren</dc:creator>
		<pubDate>Mon, 25 Feb 2008 14:04:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.scottwarren.info/2008/02/24/syncing-files/#comment-126</guid>
		<description>I would be interested in seeing the video.  Randall Schwartz from FLOSS weekly is supposed to have a really good Google Tech Talk about it.  I looked just after he had presented but I didn&#039;t see anything (I just found it).  

The reason I&#039;m interested is that CVS has a problem with binary files where it keeps a full copy of every version of a binary file and that can add up on an office document.

The other thing is I&#039;m looking at using ZFS for versioning/backup.  Plus, I need to get a couple really large drives for my computer</description>
		<content:encoded><![CDATA[<p>I would be interested in seeing the video.  Randall Schwartz from FLOSS weekly is supposed to have a really good Google Tech Talk about it.  I looked just after he had presented but I didn&#8217;t see anything (I just found it).  </p>
<p>The reason I&#8217;m interested is that CVS has a problem with binary files where it keeps a full copy of every version of a binary file and that can add up on an office document.</p>
<p>The other thing is I&#8217;m looking at using ZFS for versioning/backup.  Plus, I need to get a couple really large drives for my computer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kishba</title>
		<link>http://www.scottwarren.info/2008/02/24/syncing-files/#comment-125</link>
		<dc:creator>kishba</dc:creator>
		<pubDate>Mon, 25 Feb 2008 13:44:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.scottwarren.info/2008/02/24/syncing-files/#comment-125</guid>
		<description>Like other versioning systems, Git uses the SHA1 of a file to create deltas. When one piece of the file changes, it results in a brand new SHA1.  But if your mp3s/photos stay the same (which they should) then pushing/pulling updates will only move new stuff.

I have a video that&#039;s aimed at Ruby/Rails/Git, but it might still be interesting to you. Let me know if you want to watch it.</description>
		<content:encoded><![CDATA[<p>Like other versioning systems, Git uses the SHA1 of a file to create deltas. When one piece of the file changes, it results in a brand new SHA1.  But if your mp3s/photos stay the same (which they should) then pushing/pulling updates will only move new stuff.</p>
<p>I have a video that&#8217;s aimed at Ruby/Rails/Git, but it might still be interesting to you. Let me know if you want to watch it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Warren</title>
		<link>http://www.scottwarren.info/2008/02/24/syncing-files/#comment-124</link>
		<dc:creator>Scott Warren</dc:creator>
		<pubDate>Mon, 25 Feb 2008 13:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.scottwarren.info/2008/02/24/syncing-files/#comment-124</guid>
		<description>Do you know how git handles binary files?  I have 20 GB of photos and 30+ GB of audio files and I don&#039;t want to sync over the whole file every time they change.  I was going to start reading up on git over spring break because it really does seem like a more UNIXy versioning system.  :-)</description>
		<content:encoded><![CDATA[<p>Do you know how git handles binary files?  I have 20 GB of photos and 30+ GB of audio files and I don&#8217;t want to sync over the whole file every time they change.  I was going to start reading up on git over spring break because it really does seem like a more UNIXy versioning system.  <img src='http://www.scottwarren.info/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kishba</title>
		<link>http://www.scottwarren.info/2008/02/24/syncing-files/#comment-123</link>
		<dc:creator>kishba</dc:creator>
		<pubDate>Mon, 25 Feb 2008 03:01:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.scottwarren.info/2008/02/24/syncing-files/#comment-123</guid>
		<description>You might want to reconsider the SVN/CVS thing.  Git is a *great* alternative. Instead of creating a hidden directory in each subfolder (which breaks bundles/packages like the new Office format) it creates just one folder in the root of the directory you&#039;re managing.  It&#039;s not ideal for huge files like moves/music/photos but for everything else it&#039;s great.

That being said, I&#039;m only using it for a few programming projects right now, but I&#039;ve been very impressed so far.  The cool thing is there&#039;s not really a central repository, you can just push and pull from any computer.

My personal data is still in a state of chaos since none of my computers have enough internal storage to hold everything.  Someday I will get a Mac Pro or something with lots of internal storage...</description>
		<content:encoded><![CDATA[<p>You might want to reconsider the SVN/CVS thing.  Git is a *great* alternative. Instead of creating a hidden directory in each subfolder (which breaks bundles/packages like the new Office format) it creates just one folder in the root of the directory you&#8217;re managing.  It&#8217;s not ideal for huge files like moves/music/photos but for everything else it&#8217;s great.</p>
<p>That being said, I&#8217;m only using it for a few programming projects right now, but I&#8217;ve been very impressed so far.  The cool thing is there&#8217;s not really a central repository, you can just push and pull from any computer.</p>
<p>My personal data is still in a state of chaos since none of my computers have enough internal storage to hold everything.  Someday I will get a Mac Pro or something with lots of internal storage&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

