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



.




Friday, March 29, 2013

基本Wiki語法教學

Wiki
"Wiki (收聽i/ˈwɪk/)是一種在網路上開放且可供多人協同創作的超文字系統"
"基本上,Wiki包含一套能簡易製作與修改HTML網頁的系統,再加上一套記錄和編排所有改變的系統,並且提供還原改變的功能。使用Wiki系統的網站稱為Wiki網站,允許任何造訪它的人快速輕易地添加、刪除和編輯所有的內容,而且通常都不須登錄,因此特別適合團隊合作的寫作方式。"


基本Wiki語法教學
維基語法
wiki-Cheatsheet



.