Friday, May 10, 2013

Git 懶人入門包 - 從安裝到使用 (Mac版)


  1. 安裝homebrew
  2. 安裝git
  3. 註冊github
  4. 設定git config
  5. 學習git基本指令
  6. 使用github
參考自:


1. 安裝homebrew:

2. 安裝git
brew install git

3. 註冊github

4. 設定git config
git config --global user.name "Your Name Here"
git config --global user.email "your_email@example.com"

5. 學習git基本指令
git init
git add .
git ci -m ""
git checkout
git checkout -b "foo_branch_name"

6. 使用github
git clone https://github.com/foo_repository.git 
(或者是 git init; git remote add origin foo_repository_url  )
git pull origin foo_branch_name
git push origin foo_branch_name



.