|
1 |
| -This directory contains various modules for Emacs support. |
| 1 | +This directory used to contain various modules for Emacs support. |
2 | 2 |
|
3 |
| -To make the modules available to Emacs, you should add this directory |
4 |
| -to your load-path, and then require the modules you want. This can be |
5 |
| -done by adding to your .emacs something like this: |
| 3 | +These were added shortly after Git was first released. Since then |
| 4 | +Emacs's own support for Git got better than what was offered by these |
| 5 | +modes. There are also popular 3rd-party Git modes such as Magit which |
| 6 | +offer replacements for these. |
6 | 7 |
|
7 |
| - (add-to-list 'load-path ".../git/contrib/emacs") |
8 |
| - (require 'git) |
9 |
| - (require 'git-blame) |
10 |
| - |
11 |
| - |
12 |
| -The following modules are available: |
| 8 | +The following modules were available, and can be dug up from the Git |
| 9 | +history: |
13 | 10 |
|
14 | 11 | * git.el:
|
15 | 12 |
|
16 |
| - Status manager that displays the state of all the files of the |
17 |
| - project, and provides easy access to the most frequently used git |
18 |
| - commands. The user interface is as far as possible compatible with |
19 |
| - the pcl-cvs mode. It can be started with `M-x git-status'. |
| 13 | + Wrapper for "git status" that provided access to other git commands. |
| 14 | + |
| 15 | + Modern alternatives to this include Magit, and VC mode that ships |
| 16 | + with Emacs. |
20 | 17 |
|
21 | 18 | * git-blame.el:
|
22 | 19 |
|
23 |
| - Emacs implementation of incremental git-blame. When you turn it on |
24 |
| - while viewing a file, the editor buffer will be updated by setting |
25 |
| - the background of individual lines to a color that reflects which |
26 |
| - commit it comes from. And when you move around the buffer, a |
27 |
| - one-line summary will be shown in the echo area. |
| 20 | + A wrapper for "git blame" written before Emacs's own vc-annotate |
| 21 | + mode learned to invoke git-blame, which can be done via C-x v g. |
28 | 22 |
|
29 | 23 | * vc-git.el:
|
30 | 24 |
|
|
0 commit comments