about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2008-02-04 13:30:31 +0100
committerChristian Neukirchen <chneukirchen@gmail.com>2008-02-04 13:30:31 +0100
commitaea8cbf49f774d8521483b326d72cd80f3a45cf1 (patch)
tree42a46c6391dfaa91899f0e163fc51f4c42361501
parent68f0de5d10fd5adc62fedd310fff04b8ac7bb697 (diff)
downloadgitsum-aea8cbf49f774d8521483b326d72cd80f3a45cf1.tar.gz
gitsum-aea8cbf49f774d8521483b326d72cd80f3a45cf1.tar.xz
gitsum-aea8cbf49f774d8521483b326d72cd80f3a45cf1.zip
Add some docs
#  README    |    6 +++---
#  gitsum.el |    4 ++++
#  README    |   24 ++++++++++++++++++++++++
#  3 files changed, 31 insertions(+), 3 deletions(-)
#
-rw-r--r--README24
-rw-r--r--gitsum.el4
2 files changed, 28 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..3d2d2b8
--- /dev/null
+++ b/README
@@ -0,0 +1,24 @@
+= gitsum.el --- basic darcsum feelalike for Git
+
+Copyright (C) 2008  Christian Neukirchen <purl.org/net/chneukirchen>
+Licensed under the same terms as Emacs.
+
+Gitsum provides a mode to do interactive partial commits with Emacs.
+Run `M-x gitsum' inside a Git repository and kill everything you don't
+want to commit with `k'.  You can navigate easily between hunks with
+`n' and `p' and between files with `N' and `P'.  A whole file can be
+killed with `K'.  If you want to refine the patch, you can split it
+with `C-c C-s'.  If you toggle read-only with `C-x C-q', you can edit
+everything freely (be careful!).
+
+If you are ready, commit the patch with `C-c C-c' or just `c'.
+Enter the message and press `C-c C-c' again.
+
+N.B: If you want to add files in the commit, use `M-x git-status' from
+git.el, add the files with `a', then switch to gitsum with `s'.
+You can only add files as a whole.
+
+
+Repository: http://github.com/chneukirchen/gitsum
+             git://github.com/chneukirchen/gitsum.git
+Patches to: chneukirchen@gmail.com
diff --git a/gitsum.el b/gitsum.el
index c7fd666..38786cb 100644
--- a/gitsum.el
+++ b/gitsum.el
@@ -2,6 +2,10 @@
 ;; Copyright (C) 2008  Christian Neukirchen <purl.org/net/chneukirchen>
 ;; Licensed under the same terms as Emacs.
 
+;; Repository: http://github.com/chneukirchen/gitsum
+;;              git://github.com/chneukirchen/gitsum.git
+;; Patches to: chneukirchen@gmail.com
+
 ;; Version: 0.2
 ;; 04feb2008  +chris+