Home avatar

The Lazy developer: Lou

Take notes. Do whatever I want.

Git 學習筆記

位於索引中的檔案 : Tracked files(追蹤的檔案) 不再索引內的檔案 : Untracked files(未被追蹤的檔案)

  • working tree 是工作目錄
  • 只要 被索引中的檔案內容工作目錄中的檔案內容一致 就會被稱為一個 “Stage“狀態
  • 只要 被索引中的檔案內容工作目錄中的檔案內容不一致 就會被稱為一個 “Unstage“狀態

Git 指令

/images/remote/xFkkXIE_14903188663520659447.jpg

Golang Learning Point

Golang Learning Point

開發 GO 的原因

  1. 簡潔
  2. 編譯快
  3. 編譯式語言
  4. 強型別
  5. 內建併行功能(Concurrent)
  6. 自動記憶體回收

適用 GO 的應用情景

  1. Web Development
  2. Command-line Interfaces(CLIs)
  3. Cloud & NetWork Services

相容性(Compatibility of GO)

GO 1.X 新版本保證會向下相容, 除了以下四點

0%