开发者

Which version control system or platform is the best one for tracking and distributing personal Emacs configurations?

I currently use subversion to track my configuration changes of Emacs and to sync my '.emacs.d' directory to different platforms.

A lot of packages like Ido, Muse or Org-mode are part of Emacs distributions which come with Debian or Carbon Emacs (osx). But other packages which I'm also using are not part of those distributions so I have to add them to my personal subversion repository manually.

The advantage is that I'm now able to check out my whole '.emacs.d' configuration wherever I want to work. The disadvantage is that I have to track those packages for updates and every time a new update is available I have to update my own repository manually.

Is there is a better way to integrate my own configurations and packages with those of the 'community'? I realized that github.com is used by many people for that reason.

Should I better use git instead of subversion to sync and share my Emacs configurations with that of the community? And does that mean that I should better switch to github.com instead of using my own subversion server to get closer 开发者_C百科to other Emacs users regarding exchange and distribution?


Every time you have to deal with some "distribution" issue, you could be better off considering a Distributed Version Control System (DVCS).

With Git, for instance, you could organize your packages as submodules within a main emacs configuration project, itself referenced as a submodule within your own project.

That way, you only need to

 git submodule update --recursive

once in a while to be sure getting the latest packages referenced by your central configuration project.
Note: the recursive initialization of those submodules is a bit tricky: see this SO question for more.


I personally use (and recommend) git for storing emacs files. It would be a good idea to look at http://github.com/technomancy/emacs-starter-kit. It is a a large set of emacs files used by many people (over 600 people watching the repo). As they are updated pretty regularly you get new versions. It is also worth looking at elpa which is intended to make package management of emacs stuff easy.

You may also want to see how I intend to keep other package changes together.

How to I combine two separate Git repositories?


While I basically agree with VonC, and am grateful that he brought git submodules to my attention I would not recommend them to someone familiar with VCS but bridging over to DVCS. I now thoroughly enjoy using git and recommend it heartily but it has taken a lot of work to cross that bridge.

As to alternative methods to address community software, I also heartily recommend ELPA for packages not supplied by Emacs. Updates have to be applied manually but at least ELPA provides a mechanism to let you know updates exist. And it also provides a good scaffold for adding community provided packages not hosted by ELPA.

Lastly, you might want to elaborate on how you organize your packages based on platform. I try to keep all my platform (and per-machine) customization in embedded Emacs lisp such that I share a single set of source controlled support (*.el) files on all the major platforms I work with: Linux (Fedora and Ubuntu), Mac OS X and Windows (native and cygwin).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜