2011年9月23日金曜日

OSXでgitの使い方の要点だけ(インストール編)

Android自体のソースコードもそうだけど、最近いろんなオープンソースプロジェクトがSubversionから移行していたり、githubを使う機会もなんだか増えて来たのでgitの使い方を整理してみる。当方Subversionはまあまあ使っていて、OSX Snow Leopardという環境です。まずはインストールから。


  1. インストーラのダウンロード
    これはバイナリパッケージがgoogle codeにあった。以下から適切なのを選んでDLする。迷ったらUniversalを選べば良いんじゃないかしら(僕はx86_64のをDLした)。
    http://code.google.com/p/git-osx-installer/downloads/list
  2. マウント
    エントリ時点のgitのバージョンは1.7.6.1だったので、git-1.7.6.1-x86_64-snow-leopard.dmg というファイルがダウンロードできた。これをダブルクリックでマウント。
  3. インストーラ起動
    マウントすると中に.pkgファイルがあるのでダブルクリックでインストーラ起動。インストーラは指示に従えば良いので割愛します。
  4. インストール完了
    gitコマンドは、/usr/local/配下にインストールされる。インストーラがPATHの書き換えはやってくれるみたいなので、これだけでgitコマンドは使える。ただしターミナル以外からgitコマンドを利用するときにはPATHは参照されないみたいなので、dmgの中に入っている"setup git PATH for non-terminal programs.sh"というのを実行する。これは設定しなくても良いんだけど、設定しといたほうがいいんじゃないか。
    gitのGUIフロントエンドはGIT GUIとかgitkとかいうのがあるみたいだけど、いったん忘れてコマンドラインで調べることにする。
  5. アップデートのやりかた
    上記のインストールと同じ手順を踏めばOK。
  6. アンインストール
    パッケージの中にuninstall.shが置いてあるからこれを実行する。
以上でターミナルからgitコマンドを実行すると、以下みたいな表示が出てくる。これでインストールは完了。

$ git
usage: git [--version] [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
           [-p|--paginate|--no-pager] [--no-replace-objects]
           [--bare] [--git-dir=<path>] [--work-tree=<path>]
           [-c name=value] [--help]
           <command> [<args>]

The most commonly used git commands are:
   add        Add file contents to the index
   bisect     Find by binary search the change that introduced a bug
   branch     List, create, or delete branches
   checkout   Checkout a branch or paths to the working tree
   clone      Clone a repository into a new directory
   commit     Record changes to the repository
   diff       Show changes between commits, commit and working tree, etc
   fetch      Download objects and refs from another repository
   grep       Print lines matching a pattern
   init       Create an empty git repository or reinitialize an existing one
   log        Show commit logs
   merge      Join two or more development histories together
   mv         Move or rename a file, a directory, or a symlink
   pull       Fetch from and merge with another repository or a local branch
   push       Update remote refs along with associated objects
   rebase     Forward-port local commits to the updated upstream head
   reset      Reset current HEAD to the specified state
   rm         Remove files from the working tree and from the index
   show       Show various types of objects
   status     Show the working tree status
   tag        Create, list, delete or verify a tag object signed with GPG

See 'git help <command>' for more information on a specific command.

とりあえず上記のgitコマンドをSubversionとの対比で調べることになりそう。

[9/27追記]
Xcode 4をインストールすると/usr/bin/gitに自動でインストールされるみたい。

0 件のコメント:

コメントを投稿