I'm currently using a barebones file server to move code between a couple local machines (one Windows, one Linux).
Ask HN: How do you move files between computers?
1–6 of 6 posts
Re: Ask HN: How do you move files between computers?
#2The title doesn't really say it all. It depends.
How much disk space are we talking about? More, or less, than will fit on Dropbox?
Do you have one person with accounts on both machines? Or is this sharing between different people?
You mention code, and moving it. Do you really mean "move" or do you mean something closer to copy, or sync? rsync maybe? Or stick the code in git, put it in a GitHub project, and clone onto each machine then use GitHub to manage keeping them in sync?
Maybe explain the specifics more and you might get some better answers.
Personally I lean heavily on GitHub and dropbox (for different use cases). But then also sometimes use scp for copying files. Would use rsync if I had to sync files.
Re: Ask HN: How do you move files between computers?
#3Re: Ask HN: How do you move files between computers?
#4Re: Ask HN: How do you move files between computers?
#5>Title says it all. The title doesn't really say it all. It depends. How much disk space are we talking about? More, or less, than will fit on Dropbox? Do you have one person with accounts on both machines? Or is this sharing between different people? You mention code, and moving it. Do you really mean "move" or do you mean something closer to copy, or sync? rsync maybe? Or stick the code in git, put it in a GitHub p…
I don't move much around myself, but I anticipate that changing and it's nice to have a broader picture of what's out there.
Re: Ask HN: How do you move files between computers?
#6For ordinary files between Windows and Linux, FAT32 partitions/disks. This means I can drag and drop graphically or use command line tools. Often I will use an SD card or thumbdrive when the transfer is tens of GB because the asynchronous steps means not having to baby sit an end to end pipeline and fewer steps if something goes wrong.