コードを舐める日々

わからないことがわからないことをしる日々

gitをmacにインスコしてみた。


git-osx-installer -


OSX Installer for Git - Google Project Hosting

DL

ここからintelmac専用をDLしておく。
git-1.6.0-intel-leopard.dmg(2008/08/18現在)

Install

DLしたファイルを開くと3つのファイルがある。

  • 1 - Install Git
  • 2 - Setup・・・
  • README.txt

番号の順にインスコする。

Gitコマンドチェック

試しにterminalからGit。

2008-08-19 03:10:14.187 defaults[1380:10b] 
The domain/default pair of (/Users/makoto/.MacOSX/environment, PATH) does not exist
Variable PATH in ~/.MacOSX/environment.plist changed from '/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin' to '/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/usr/local/git/bin'
~ ~/Desktop
~/Desktop
Makoto-macbookpro:Desktop makoto$ git 
usage: git [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate|--no-pager] [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE] [--help] COMMAND [ARGS]

The most commonly used git commands are:
   add        Add file contents to the index
   bisect     Find the change that introduced a bug by binary search
   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.

これでおk!
今度は時間があればGitコマンドの勉強をするか。