資訊工程入門
新接觸程式的朋友們,歡迎點選分頁"極簡單入門懶人包"
Tuesday, March 18, 2014
Monday, June 17, 2013
Tuesday, May 28, 2013
Friday, May 17, 2013
Friday, May 10, 2013
Git 懶人入門包 - 從安裝到使用 (Mac版)
- 安裝homebrew
- 安裝git
- 註冊github
- 設定git config
- 學習git基本指令
- 使用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
.
Tuesday, April 30, 2013
Tuesday, April 16, 2013
Subscribe to:
Posts (Atom)