質問

Michael Loppの本「BeingGeek」を読んだ後、自宅のコンピューターと仕事用のコンピューターの間でファイルを同期する手段としてDropboxを使い始めました。それは素晴らしかったです、それはあなたが取り組んでいるファイルの最新バージョンを追跡することを本当に苦痛なくします。

私の質問は、このツールに関する人々の経験、特に大規模なプロジェクトを開発するためにこのツールを使用した可能性のあるプログラマーと関係があります。

現在、Dropboxの主な用途は3つあります: ジェネラコディセタグプレ

現在、メインのバックアップツールとして使用していますが、これが良いアイデアかどうかはわかりません。しかし、現在、プロジェクト全体のローカル(作業中)コピーが各コンピューター(自宅のラップトップと仕事用コンピューター)に「チェックアウト」されており、さらにプロジェクト全体がドロップボックスサイトに保存されています。そのため、コンピュータの1つ、または両方に問題が発生した場合でも、そのオフサイトバックアップを利用でき、すべてのファイルにアクセスするにはDropboxを再インストールする必要があると考えています。

これを行った経験のある人はいますか?誰かがdropboxを使用して主要なファイルの回復をしましたか?それともこれは広く使われていますか?事前にフィードバックをお寄せいただきありがとうございます。

役に立ちましたか?

解決

Using Dropbox to maintain several files and its associated metadata when those files are historized in a VCS is always a bit tricky because of potential corruption issue (if one of those metadata part of the repository isn't correctly synchronized, you can end up with a non_working repo)

That is why I always use with DropBox:

  • a DVCS (like Git): I can work directly in a working tree within a DropBox repo or I can clone said repo anywhere else outside the DropBox if I need to,
  • a single bundle file to which I can push at any time the changes from my local repo, wherever that repo might be.

That way, the only file that really need to be in sync in DropBox is that unique bundle file (representing a bare repo as one file).

See "Git with DropBox" for more.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top