英文
含義master
預設開發分支
head
預設開發分支
origin
預設遠端版本庫
head^
head的父提交
注:此表引用自網際網路
2. 修改和提交
3. 檢視提交歷史
4. 撤銷
5. 分支與標籤
6. 合併和衍合
7. 遠端操作
1.1 轉殖遠端版本庫
git clone
1.2 初始化本地版本庫git init
2.1 檢視狀態git status
2.2 檢視變更內容git diff
2.3 跟蹤所有改動過的檔案git add .
2.4 跟蹤指定的檔案git add
2.5 檔案改名git mv
2.6 刪除檔案git rm
2.7 停止跟蹤檔案但不刪除git rm --cached
2.8 提交所有更新過的檔案git commit -m "commit message"
2.9 修改最後一次提交git commit --amend
3.1 檢視提交歷史git log
3.2 檢視指定檔案的提交歷史git log -p
3.3 以列表方式檢視指定檔案的提交歷史git blame
4.1 撤銷工作目錄中所有未提交檔案的修改內容git reset --hard head
4.2 撤銷指定的未提交檔案的修改內容git checkout head
4.3 撤銷指定的提交git revert
5.1 顯示所有本地分支git branch
5.2 切換到指定分支或者標籤git checkout
5.3 建立新分支git branch
5.4 刪除本地分支git branch -d
5.5 列出所有本地標籤git tag
5.6 基於最新提交建立標籤git tag
5.7 刪除標籤git tag -d
6.1 合併指定分支到當前分支git merge
6.2 衍合指定分支到當前分支git rebase
7.1 檢視遠端版本庫資訊git remote -v
7.2 檢視指定遠端版本庫資訊git remote show
7.3 新增遠端版本庫git remote add
7.4 從遠端庫獲取**git fetch
git pull
7.6 上傳**及快速合併git push
7.7 刪除遠端分支及標籤git push :
7.8 上傳所有標籤git push --tags
Git 常用命令速查
記錄一下方面自己查詢 git branch 檢視本地所有分支 git status 檢視當前狀態 git commit 提交 git branch a 檢視所有的分支 git branch r 檢視遠端所有分支 git commit am init 提交並且加注釋 git remote add or...
Git 常用命令速查
git branch 檢視本地所有分支 git status 檢視當前狀態 git commit 提交 git branch a 檢視所有的分支 git branch r 檢視遠端所有分支 git commit am init 提交並且加注釋 git remote add origin git 19...
Git 常用命令速查
git branch 檢視本地所有分支 git status 檢視當前狀態 git commit 提交 git branch a 檢視所有的分支 git branch r 檢視遠端所有分支 git commit am init 提交並且加注釋 git remote add origin git 19...