Keeping shell configurations in sync across multiple machines - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T21:45:53Zhttp://stackoverflow.com/feeds/question/218255http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218255/keeping-shell-configurations-in-sync-across-multiple-machines1Keeping shell configurations in sync across multiple machinesmustpax2008-10-20T12:30:18Z2008-10-20T12:42:17Z
<p>I'm a pretty active command line user and I have shell accounts all over the place. MacBooks, Linux desktop machines, Linux servers, Cygwin on XP, you name it.</p>
<p>How can I keep my shell configuration (<code>.bashrc</code>, <code>.vimrc</code> etc.) in sync across all these machines using the limited tools available across all platforms?</p>
<p>I have been using <code>rsync</code> in a pretty limited manner that involves manually copying some files over when I need them, but I want a standard way for setting up the same basic shell environment across all my machines. Tell me your shell account management strategy.</p>
http://stackoverflow.com/questions/218255/keeping-shell-configurations-in-sync-across-multiple-machines/218290#2182902Answer by ejgottl for Keeping shell configurations in sync across multiple machinesejgottl2008-10-20T12:41:22Z2008-10-20T12:41:22Z<p>I've used version control for this in the past (<a href="http://subversion.tigris.org/" rel="nofollow">svn</a>, <a href="http://www.selenic.com/mercurial/wiki/" rel="nofollow">mercurial</a>, etc...). You can set up your own server, or use a hosted one. <a href="http://www.getdropbox.com" rel="nofollow">Dropbox</a> also works.</p>
http://stackoverflow.com/questions/218255/keeping-shell-configurations-in-sync-across-multiple-machines/218294#2182940Answer by Mike Reedell for Keeping shell configurations in sync across multiple machinesMike Reedell2008-10-20T12:42:17Z2008-10-20T12:42:17Z<p>If you have access to source control, I'd just check them in. This way you get to sync them across multiple machines and you can compare/roll-back if need be. If you don't have CVS/SVN at work there are free options available.</p>