Skip to content

Commit

Permalink
修正錯字和多餘的字
Browse files Browse the repository at this point in the history
  • Loading branch information
Pajace committed Jan 27, 2015
1 parent ed8807a commit 9b63c0a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/14 Git for Windows 選項設定.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Git 選項設定的檔案內容其實格式都一樣,我們試著開啟一個*

git config --global core.autocrlf true

幣者曾經寫過一篇 [Git 在 Windows 平台處理斷行字元 (CRLF) 的注意事項](http://blog.miniasp.com/post/2013/09/15/Git-for-Windows-Line-Ending-Conversion-Notes.aspx) 的文章,建議各位可以看看。
筆者曾經寫過一篇 [Git 在 Windows 平台處理斷行字元 (CRLF) 的注意事項](http://blog.miniasp.com/post/2013/09/15/Git-for-Windows-Line-Ending-Conversion-Notes.aspx) 的文章,建議各位可以看看。

* 自動訂正打錯的參數

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Git 標籤 (Tag) 擁有兩種型態,這兩種類型分別是:

1. 當我們執行 `git tag` 列出所有標籤時,所有標籤都會混在一起,看不出標籤的類型。
2. 建立「標示標籤」要加上 `-a` 參數。
3. 建立「標示標籤」要一定要加上「版本訊息」,跟執行 `git commit` 一樣都有 `-m` 參數可用。
3. 建立「標示標籤」一定要加上「版本訊息」,跟執行 `git commit` 一樣都有 `-m` 參數可用。
4. 當我們執行 `git cat-file -p 1.0.0-beta` 時,你應該可以看出這個物件內容跟 commit 物件稍稍有點不同。
5. 當我們執行 `git cat-file -p 1.0.0-beta` 時,你從內容看到的 `type` 講的是上一行 `object` 的物件類型,這代表你也可以把任何 Git 物件建立成一個標籤物件。
6. 當我們執行 `git cat-file -t 1.0.0-beta` 時,得到的是 tag 物件類型。
Expand Down Expand Up @@ -81,4 +81,4 @@ Git 標籤 (Tag) 擁有兩種型態,這兩種類型分別是:
-------

* [BRANCHING AND MERGING](http://gitref.org/branching/#tag)
* [Semantic Versioning](http://semver.org/)
* [Semantic Versioning](http://semver.org/)
4 changes: 2 additions & 2 deletions docs/17 關於合併的基本觀念與使用方式.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

![image](https://f.cloud.github.com/assets/88981/1342036/8c70fb60-3659-11e3-8768-d238ea867225.png)

**注意**:在切換「分支」之前,請隨時查看並保持「工作目錄」的狀態是「乾淨的」,不要有有任何檔案異動中的狀態
**注意**:在切換「分支」之前,請隨時查看並保持「工作目錄」的狀態是「乾淨的」,不要有任何檔案異動中的狀態

現在我們回顧一下兩個分支的內容:

Expand Down Expand Up @@ -226,4 +226,4 @@ Git 合併算是比較困難的部分,但重點還是在觀念,觀念正確
參考連結
-------

* [BRANCHING AND MERGING](http://gitref.org/branching/#merge)
* [BRANCHING AND MERGING](http://gitref.org/branching/#merge)

0 comments on commit 9b63c0a

Please sign in to comment.