summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2013-04-10 01:51:30 +0200
committerGravatar Tom Willemsen2013-04-10 01:51:30 +0200
commit684010b71f621338795e6a50f9e7453ef6c86dc6 (patch)
treec7177f4e30a70d05baf500583e441491674ccf80 /INSTALL
parent3b04c88eb6eafe7befbda6714c5f31b6c40fde09 (diff)
downloadgit-auto-commit-mode-06459d96e4f8c09b0cb948b4f967e526ae1ad8c4.tar.gz
git-auto-commit-mode-06459d96e4f8c09b0cb948b4f967e526ae1ad8c4.zip
Add other complementary files4.2.0
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL36
1 files changed, 36 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..8a13e37
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,36 @@
+# -*- mode: org; -*-
+#+STARTUP: showall
+
+In order to use git-auto-commit-mode you need to make sure that it
+can be found in your =load-path=. You can do this either by installing
+it through ELPA or you can do it manually.
+
+* ELPA
+
+ git-auto-commit-mode can be found in both [[http://marmalade-repo.org/][Marmalade]] and [[http://melpa.milkbox.net/][MELPA]], so
+ if you have either of those set-up installing should be as easy as:
+ #+BEGIN_EXAMPLE
+ M-x package-install <RET> git-auto-commit-mode <RET>
+ #+END_EXAMPLE
+
+ And you're done.
+
+* Manual
+
+ To install git-auto-commit-mode manually you should download the
+ sources from one of the several places it can be found, after which
+ you should extract the archive and add the resulting directory to
+ you load path:
+ #+BEGIN_EXAMPLE
+ (add-to-list 'load-path "/path/to/git-auto-commit-mode")
+ #+END_EXAMPLE
+
+ Once it can be found in your =load-path= you can =load=, =require= or
+ =autoload= it, whichever you like:
+ #+BEGIN_EXAMPLE
+ (require 'git-auto-commit-mode)
+
+ ;; Or...
+
+ (autoload 'git-auto-commit-mode "git-auto-commit-mode")
+ #+END_EXAMPLE