Skip to content

Commit

Permalink
Simplify install section. #11
Browse files Browse the repository at this point in the history
  • Loading branch information
DeaR committed Apr 19, 2012
1 parent abdd1ce commit 89f2044
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,23 @@ A front end for git in [xyzzy].
```

3. 更に環境固有の設定も追加します
* [msysgit] を使用
`$MSYSGIT` -- msysgit のインストールディレクトリ
* [msysgit] を使用する場合
`$MSYSGIT_DIR` -- [msysgit] のインストールディレクトリ

```lisp
(pushnew `("PATH" . ,(concat "$MSYSGIT/bin;$MSYSGIT/mingw/bin;$MSYSGIT/cmd;"
(si:getenv "PATH")))
*git-environ* :test #'equal)
(push `("PATH" . ,(concat "$MSYSGIT_DIR/bin;$MSYSGIT_DIR/mingw/bin;$MSYSGIT_DIR/cmd;"
(si:getenv "PATH")))
*git-environ*)
(push '("CYGWIN" . "") *git-environ*) ; If installed cygwin
```
* [msysgit][cygwin] が同居していて、 [msysgit] を使用
* [cygwin] を使用する場合
`$CYGWIN_DIR` -- [cygwin] のインストールディレクトリ

```lisp
(pushnew '("CYGWIN" . "") *git-environ* :test #'equal)
(push `("PATH" . ,(concat "$CYGWIN_DIR/usr/local/bin;$CYGWIN_DIR/usr/bin;$CYGWIN_DIR/bin;"
(si:getenv "PATH")))
*git-environ*)
(push '("CYGWIN" . "ntsec") *git-environ*) ; If OS is not Windows 95,98,Me
```

4. (必要ならば) バイトコンパイルします
Expand All @@ -35,8 +40,6 @@ A front end for git in [xyzzy].
siteinit.l に設定した場合は再ダンプを行って下さい

[xyzzy]: http://www.jsdlab.co.jp/~kamei/
[マルチフレーム版xyzzy]: https://bitbucket.org/mumurik/xyzzy/wiki/Home
[NAXEL]: https://bitbucket.org/mumurik/xyzzy/wiki/NAXEL
[msysgit]: http://msysgit.github.com/
[cygwin]: http://www.cygwin.com/

Expand Down Expand Up @@ -104,10 +107,6 @@ etc...
[git-flow]: https://github.com/nvie/gitflow


## Reference
REFERENCE.md を参照ください


## Issue
下記のどちらかにでもご連絡下さい

Expand Down

0 comments on commit 89f2044

Please sign in to comment.