--- title: '#90DaysOfDevOps - Git 入門 - 第 37 天' published: false description: 90DaysOfDevOps - Git 入門 tags: "devops, 90daysofdevops, learning" cover_image: null canonical_url: null id: 1048707 --- ## Git 入門 本篇的作者在這裡很有趣玩諧音梗,把英文的 Getting to know Git 改寫成 Gitting to know Git。 在前兩篇文章中我們學習了有關版本控制,[第35天](day35.md)講到了Git做為一個版本控制系統有哪些基本的工作流程。[第36天](day36.md)講到如何安裝、更新和設定,更稍微深入探討主從式和分佈式版本控制系統 Git 之間的理論。 現在,我們將迅速帶過在 Git 常見的指令和使用案例。 ### 何處取得Git文件? 有時候你會忘記或是不曉得要用什麼 Git 指令來達到你要的需求。這時候你會需要幫助。 不用說通常大家都會優先用Google和任何的搜尋引擎來尋找你要的答案。 第二種方法是你也可以到 Git 官方網站取得文件說明。 [git-scm.com/docs](http://git-scm.com/docs) 鏈結不僅可以找到所有命令的參考資訊,還能找到不同的資源(如下圖)。 ![](Images/Day37_Git1.png) 從終端機上也可以找到跟 Git 官方網站相同的說明。如果我們要用指令`git add`,但是不確定使用方式時就能夠輸入`git add --help`來取得說明。 ![](Images/Day37_Git2.png) 我們也可以輸入指令`git add -h`來取得較簡短的說明。 ![](Images/Day37_Git3.png) ### 圍繞在 Git 的神話 "Git 沒有授權控制" - 所以你可以授權領導者維護原始碼。 "Git 太肥" - 如果你有大型的專案,Git 有能力提供淺層儲存庫,基本上這意味著它能夠減少歷史的紀錄。 ### 真正的缺點 不適合用在二進位檔案。Git 適合用在原始碼,但如果是執行檔或影片就不建議。 Git 對使用的人並不友善,事實上我們必須花費時間討論命令和功能怎麼使用。 整理來說,Git 難學好用。 ### Git 生態系統 我想要從宏觀的角度來介紹環繞在 Git 間的生態系統,但是我不會深入探討其中的一些領域。 幾乎所有的開發工具都支援 Git。 - 開發工具 - 我們曾經提到微軟的 visual studio code 有支援,其他的文字編輯器像是 sublime text 也有提供外掛整合 Git。 - 團隊工具 - 用來做持續整合/持續佈署的 Jekins, Slack 的訊息框架和專案管理/問題追蹤系統 Jira。 - 雲端供應商 - 所有的雲端供應商都有支援 Git,Microsoft Azure、Amazon AWS、Google Cloud Platform。 - 基於Git的服務 - GitHub、GitLab 和 BitBucket 之後會有更詳盡的探討。我聽過這些服務是程式碼的社交網路! ### Git Cheatsheet 我們沒有列出大部分可用的指令,看過一些線上的 Git cheatsheets之後,我紀錄一些指令和其目的。你並不需要記下所有的指令,你只要頻繁的使用自然而然就會記得。 我從 [atlassian](https://www.atlassian.com/git/tutorials/atlassian-git-cheatsheet) 連結抄寫上面的指令和說明,就像是每天親身參與的日常任務,這也是了解 Git 指令的一種好方法。 ### Git 基本操作 | 指令 | 範例 | 描述 | | --------------- | ----------------------------- | ----------------------------------------------------------------------------------- | | git init | `git init ` | 在指定的資料夾上建立一個空的 Git 儲存庫。 | | git clone | `git clone ` | 將遠端的儲存庫複製到自己的電腦上。 | | git config | `git config user.name` | 為目前的儲存庫定義每次提交時用的作者名,可增加配置選項`system`、`global`、`local` | | git add | `git add ` | 將檔案或目錄加入索引。也可以輸入 <.> 索引所有的檔案。 | | git commit -m | `git commit -m ""` | 將索引的檔案提交出去,-m 加入註解。 | | git status | `git status` | 列出那些檔案已索引、未索引、未追蹤。 | | git log | `git log` | 用預設格式列出所有提交的歷史紀錄,這個指令有其他選項可用。 | | git diff | `git diff` | 列出你的工作目錄和索引之間有何差異。 | ### Git Undoing Changes | 指令 | 範例 | 描述 | | ------------ | ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | | git revert | `git revert ` | 做反向處理,回復這次提交的異動,並建立新的提供。 | | git reset | `git reset ` | Remove from the staging area, but leave the working directory unchanged. This unstages a file without overwriting any changes. | | git clean | `git clean -n` | 列出那些檔案會從你的工作目錄刪除。`-n`改成`-f`就會真正執行刪除。 | ### Git Rewriting History | 指令 | 範例 | 描述 | | ------------ | ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | | git commit | `git commit --amend` | Replace the last commit with the staged changes and last commit combined. Use with nothing staged to edit the last commit’s message. | | git rebase | `git rebase ` | Rebase the current branch onto. can be a commit ID, branch name, a tag, or a relative reference to HEAD. | | git reflog | `git reflog` | Show a log of changes to the local repository’s HEAD. Add --relative-date flag to show date info or --all to show all refs. | ### Git Branches | 指令 | 範例 | 描述 | | -------------- | ---------------------------- | -------------------------------------------------------------------------------------------------------------- | | git branch | `git branch` | List all of the branches in your repo. Add a argument to create a new branch with the name . | | git checkout | `git checkout -b ` | Create and check out a new branch named. Drop the -b flag to checkout an existing branch. | | git merge | `git merge ` | Merge into the current branch. | ### Git Remote Repositories | 指令 | 範例 | 描述 | | ---------------- | ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | | git remote add | `git remote add ` | Create a new connection to a remote repo. After adding a remote, you can use as a shortcut for in other commands. | | git fetch | `git fetch ` | Fetches a specific, from the repo. Leave off to fetch all remote refs. | | git pull | `git pull ` | Fetch the specified remote’s copy of current branch and immediately merge it into the local copy. | | git push | `git push ` | Push the branch to, along with necessary commits and objects. Creates named branch in the remote repo if it doesn’t exist. | ### Git Diff | 指令 | 範例 | 描述 | | ------------------- | --------------------- | ------------------------------------------------------------ | | git diff HEAD | `git diff HEAD` | Show difference between working directory and last commit. | | git diff --cached | `git diff --cached` | Show difference between staged changes and last commit | ### Git Config | 指令 | 範例 | 描述 | | ----------------------------------------------------- | -------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | | git config --global user.name | `git config --global user.name ` | Define the author name to be used for all commits by the current user. | | git config --global user.email | `git config --global user.email ` | Define author email to be used for all commits by the current user. | | git config --global alias | `git config --global alias ` | Create shortcut for a git command . | | git config --system core.editor | `git config --system core.editor ` | Set the text editor to be used by commands for all users on the machine. arg should be the comamnd that launches the desired editor. | | git config --global --edit | `git config --global --edit ` | Open the global configuration file in a text editor for manual editing. | ### Git Rebase | 指令 | 範例 | 描述 | | --------------------- | ------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------- | | git rebase -i | `git rebase -i ` | Interactively rebase current branch onto. Launches editor to enter commands for how each commit will be transferred to the new base. | ### Git Pull | 指令 | 範例 | 描述 | | --------------------------- | ------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------- | | git pull --rebase | `git pull --rebase ` | Fetch the remote’s copy of current branch and rebases it into the local copy. Uses git rebase instead of merge to integrate the branches. | ### Git Reset | 指令 | 範例 | 描述 | | -------------------------- | ----------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | | git reset | `git reset ` | Reset staging area to match most recent commit, but leave the working directory unchanged. | | git reset --hard | `git reset --hard` | Reset staging area and working directory to match most recent commit and overwrites all changes in the working directory | | git reset | `git reset ` | Move the current branch tip backward to, reset the staging area to match, but leave the working directory alone | | git reset --hard | `git reset --hard ` | Same as previous, but resets both the staging area & working directory to match. Deletes uncommitted changes, and all commits after. | ### Git Push | 指令 | 範例 | Description | | -------------------------- | ----------------------------- | ----------------------------------------------------------------------------------------------------------- | | git push --force | `git push --force` | 強迫推送即使會發生 non-fast-forward。不要用 --force 選項,除非你很清楚自己在做什麼。 | | git push --all | `git push --all` | 將本地的分支推送到指令的遠端伺服器。 | | git push --tags | `git push --tags` | push 或加上 --all 選項,預設不會傳送標籤到遠端伺服器。加上 --tags 選項才會將本地的標籤推送到遠端儲存庫。 | ## Resources - [What is Version Control?](https://www.youtube.com/watch?v=Yc8sCSeMhi4) - [Types of Version Control System](https://www.youtube.com/watch?v=kr62e_n6QuQ) - [Git Tutorial for Beginners](https://www.youtube.com/watch?v=8JJ101D3knE&t=52s) - [Git for Professionals Tutorial](https://www.youtube.com/watch?v=Uszj_k0DGsg) - [Git and GitHub for Beginners - Crash Course](https://www.youtube.com/watch?v=RGOj5yH7evk&t=8s) - [Complete Git and GitHub Tutorial](https://www.youtube.com/watch?v=apGV9Kg7ics) - [Git cheatsheet](https://www.atlassian.com/git/tutorials/atlassian-git-cheatsheet) See you on [第 38 天](day38.md)