2010年6月21日月曜日

Gitを使い始めるまで

いつも忘れるのでメモ。

設定


% git config --global user.name "Name"
% git config --global user.email "mail@example.com"
% git config --global color.ui auto

リモートリポジトリの作成


% mkdir /REPODIR/project.git
% cd project.git
% git init --bare
% cd WHERE
% git clone /REPODIR/project.git project

0 件のコメント:

コメントを投稿