Keeping shell configurations in sync across multiple machines - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T21:45:53Z http://stackoverflow.com/feeds/question/218255 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/218255/keeping-shell-configurations-in-sync-across-multiple-machines 1 Keeping shell configurations in sync across multiple machines mustpax 2008-10-20T12:30:18Z 2008-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#218290 2 Answer by ejgottl for Keeping shell configurations in sync across multiple machines ejgottl 2008-10-20T12:41:22Z 2008-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#218294 0 Answer by Mike Reedell for Keeping shell configurations in sync across multiple machines Mike Reedell 2008-10-20T12:42:17Z 2008-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>