2009-06-06 22:17:12 +02:00
|
|
|
It's Magit! A Emacs mode for Git.
|
2010-05-07 22:00:49 +02:00
|
|
|
==================================
|
2008-08-12 03:31:07 +02:00
|
|
|
|
2009-06-06 22:17:12 +02:00
|
|
|
I started to write Magit to learn about Git and to figure out how I
|
|
|
|
would be using Git in a 'natural' way. Magit will grow and hopefully
|
|
|
|
become more coherent as I learn more about Git and good ways to use
|
2008-08-12 03:31:07 +02:00
|
|
|
it. Feedback is welcome!
|
|
|
|
|
2010-05-07 22:00:49 +02:00
|
|
|
Magit is owned by Marius Vollmer and is currently maintained by Phil
|
|
|
|
Jackson. For a full list of contributors have a look at magit.el.
|
|
|
|
|
|
|
|
Installing
|
|
|
|
----------
|
2008-08-12 03:31:07 +02:00
|
|
|
|
2010-05-07 23:10:54 +02:00
|
|
|
Download the latest tarball from
|
|
|
|
[the github download page](http://github.com/philjackson/magit/downloads).
|
|
|
|
|
|
|
|
And then Magit can be installed with the popular recipe of:
|
2008-08-12 03:31:07 +02:00
|
|
|
|
2010-05-07 22:00:49 +02:00
|
|
|
$ ./autogen.sh # If you got the sources directly from Git
|
|
|
|
$ ./configure
|
|
|
|
$ make install
|
2008-08-12 03:31:07 +02:00
|
|
|
|
2008-08-14 00:07:44 +02:00
|
|
|
This will put magit.el into /usr/local/share/emacs/site-lisp, where
|
|
|
|
Emacs should be able to find it. Then add
|
2008-08-12 03:31:07 +02:00
|
|
|
|
2010-05-07 22:00:49 +02:00
|
|
|
(require 'magit)
|
2008-08-14 00:07:44 +02:00
|
|
|
|
|
|
|
to your .emacs file.
|
2008-08-12 03:31:07 +02:00
|
|
|
|
2010-05-07 22:00:49 +02:00
|
|
|
Getting started
|
|
|
|
---------------
|
2008-08-12 03:31:07 +02:00
|
|
|
|
2009-06-06 22:17:12 +02:00
|
|
|
To get started with Magit, open any file in a Git repository in Emacs
|
2008-08-12 03:31:07 +02:00
|
|
|
and run 'M-x magit-status'. Read the online help of magit-mode ('C-h
|
2009-06-06 22:17:12 +02:00
|
|
|
m' in the Magit buffer), make some changes to your files, and try to
|
2008-08-12 03:31:07 +02:00
|
|
|
commit them.
|
|
|
|
|
2010-05-07 22:00:49 +02:00
|
|
|
Learning more
|
|
|
|
-------------
|
2008-08-12 03:31:07 +02:00
|
|
|
|
|
|
|
The Magit User Manual describes things with more words than the online
|
2008-08-14 00:07:44 +02:00
|
|
|
help. You can read it in Emacs with 'C-u C-h i magit.info' for
|
|
|
|
example, or on the web at
|
2008-08-12 03:31:07 +02:00
|
|
|
|
2010-05-08 08:41:55 +02:00
|
|
|
[the manual](http://zagadka.vm.bytemark.co.uk/magit/magit.html)
|
2008-08-12 03:31:07 +02:00
|
|
|
|
2009-02-27 01:21:31 +01:00
|
|
|
If you have questions, please use the mailing list at
|
|
|
|
|
2010-05-08 08:41:55 +02:00
|
|
|
[google group](http://groups.google.com/group/magit/)
|
2009-02-27 01:21:31 +01:00
|
|
|
|
2008-08-14 00:07:44 +02:00
|
|
|
Magit's web home is currently at
|
2008-08-12 03:31:07 +02:00
|
|
|
|
2010-05-08 08:41:55 +02:00
|
|
|
[zagadka](http://zagadka.vm.bytemark.co.uk/magit/)
|