2008-10-07から1日間の記事一覧

gitの使い方メモ

gitの管理対象のファイルを作る。 myprojectディレクトリを作る。 $ mkdir myproject $ cd myproject「uhouho」という文字列が記述されたファイル「test.txt」を作る。 $ echo uhouho > test.txt gitの初期設定 氏名とメールアドレスを設定する。 $ git conf…