Revision: 26285ae33e30
Author: nogu.dev <[email protected]>
Date: Sun Feb 26 01:58:06 2012
Log: * DevelopUim.wiki
- Update.
http://code.google.com/p/uim/source/detail?r=26285ae33e30&repo=wiki
Modified:
/DevelopUim.wiki
=======================================
--- /DevelopUim.wiki Sat Feb 25 23:50:45 2012
+++ /DevelopUim.wiki Sun Feb 26 01:58:06 2012
@@ -1,23 +1,23 @@
-#summary This section describes how to develop uim.
+#summary This page describes how to develop uim.
= Introduction =
-This section describes how to develop uim with Git.
+This page describes how to develop and contribute uim with Git. The
intended audience of this page includes not only the uim committers but
also non-committers.
= Details =
== Clone the uim repository ==
-Check out from the uim Git repository and move to the source tree:
+To develop uim, get the source tree from the uim repository and move to
the source tree:
{{{
$ git clone https://code.google.com/p/uim/
$ cd uim
}}}
-See http://code.google.com/p/uim/source/checkout for more details.
-
-[InstallUim] describes how to compile and install uim.
+See http://code.google.com/p/uim/source/checkout for more details on
getting the source true.
+
+[InstallUim] describes how to compile and install uim from the source tree.
== Setup ==
-Set your name and email address if you plan to commit to a repository:
+Set your name and email address to Git if you plan to commit to the uim
repository:
{{{
$ git config --global user.name <your name>
$ git config --global user.email <your email address>
@@ -26,7 +26,7 @@
If you have a Google Account, you should set one here.
== Commit to your local repository ==
-You can check your changes to your local repository with the following
commands:
+After changing files in the source tree, you can check your changes to the
source tree with the following commands:
{{{
$ git status
$ git diff
@@ -57,4 +57,4 @@
$ git format-patch origin
}}}
-Second, send your patches to the [http://groups.google.com/group/uim-en
uim-en] mailing list. You need to join the mailing list before sending your
patches.
+Second, send your patches to the [http://groups.google.com/group/uim-en
uim-en] mailing list. You need to join the mailing list before sending your
patches. One of the committers may push your patches to the uim repository.