火曜日, 4 月 20th, 2010 | Author: djodjo

OmegaTrickのコードを触る為gitを始めたんだけど、どうもWindows環境ではうまくいかない。
なので、いつものさくらのサーバで試してみる。

1.gitのインストール

インストール先として$HOME/local/gitとする。
$HOME/localでもいいけど、後からアンインストールしやすくする為、プログラム別のディレクトリを切ってみました。
なので、あらかじめ、$HOME/localは作成しておきましょう

http://git-scm.com/

wget http://kernel.org/pub/software/scm/git/git-1.7.0.5.tar.gz
tar -vxzf git-1.7.0.5.tar.gz
cd git-1.7.0.5
./configure –prefix=$HOME/local/git
make
make install

初期設定

git config –global user.name “なまえ”
git config –global user.email “メールアドレス”

2.OmegaTrickのソースをgithubから取得する

git clone git://github.com/xenophy/OmegaTrick

githubへソースをpushするためにgithubに登録するsshキーを生成する

$ ssh-keygen
Generating public/private rsa key pair.
Enter file in which to save the key ($HOME/.ssh/id_rsa):パスフレーズを入力
このフレーズは、githubへpushするときに入力する。

githubへは、$HOME/.ssh/id_rsa.pubを登録する。

その後の毎日のソース取得は
cloneしたOmegaTrickのパスまで移動して

git pull

これでOK

Category: 未分類
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
Leave a Reply