1.git 常用命令
1.常用
$ git remote add origin git@github.com:yeszao/dofiler.git # 配置遠端git版本庫
$ git pull origin master # 下載程式碼及快速合併
$ git push origin master # 上傳程式碼及快速合併
$ git fetch origin # 從遠端庫獲取程式碼
$ git branch # 顯示所有分支
$ git checkout master # 切換到master分支
$ git checkout -b dev # 建立並切換到dev分支
$ git commit -m "first version" # 提交
$ git status # 檢視狀態
$ git log # 檢視提交歷史
$ git config --global core.editor vim # 設定預設編輯器為vim(git預設用nano)
$ git config core.ignorecase false # 設定大小寫敏感
$ git config --global user.name "YOUR NAME" # 設定使用者名稱
$ git config --global user.email "YOUR EMAIL ADDRESS" # 設定郵箱
2.別名 alias
$ git config --global alias.br="branch" # 建立/檢視本地分支
$ git config --global alias.co="checkout" # 切換分支
$ git config --global alias.cb="checkout -b" # 建立並切換到新分支
$ git config --global alias.cm="commit -m" # 提交
$ git config --global alias.st="status" # 檢視狀態
$ git config --global alias.pullm="pull origin master" # 拉取分支
$ git config --global alias.pushm="push origin master" # 提交分支
$ git config --global alias.log="git log --oneline --graph --decorate --color=always" # 單行、分顏色顯示記錄
$ git config --global alias.logg="git log --graph --all --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(bold white)— %an%C(reset)%C(bold yellow)%d%C(reset)' --abbrev-commit --date=relative" # 複雜顯示
3.建立版本庫
$ git clone <url> # 克隆遠端版本庫
$ git init # 初始化本地版本庫
4.修改和提交
$ git status # 檢視狀態
$ git diff # 檢視變更內容
$ git add . # 跟蹤所有改動過的檔案
$ git add <file> # 跟蹤指定的檔案
$ git mv <old> <new> # 檔案改名
$ git rm <file> # 刪除檔案
$ git rm --cached <file> # 停止跟蹤檔案但不刪除
$ git commit -m “commit message” # 提交所有更新過的檔案
$ git commit --amend # 修改最後一次提交
5.檢視歷史
$ git log # 檢視提交歷史
$ git log -p <file> # 檢視指定檔案的提交歷史
$ git blame <file> # 以列表方式檢視指定檔案的提交歷史
6.撤銷
$ git reset --hard HEAD # 撤消工作目錄中所有未提交檔案的修改內容
$ git reset --hard <version> # 撤銷到某個特定版本
$ git checkout HEAD <file> # 撤消指定的未提交檔案的修改內容
$ git checkout -- <file> # 同上一個命令
$ git revert <commit> # 撤消指定的提交分支與標籤
7.分支與標籤
$ git branch # 顯示所有本地分支
$ git checkout <branch/tag> # 切換到指定分支或標籤
$ git branch <new-branch> # 建立新分支
$ git branch -d <branch> # 刪除本地分支
$ git tag # 列出所有本地標籤
$ git tag <tagname> # 基於最新提交建立標籤
$ git tag -a "v1.0" -m "一些說明" # -a指定標籤名稱,-m指定標籤說明
$ git tag -d <tagname> # 刪除標籤
$ git checkout dev # 合併特定的commit到dev分支上
$ git cherry-pick 62ecb3
8.合併與衍合
$ git merge <branch> # 合併指定分支到當前分支
$ git merge --abort # 取消當前合併,重建合併前狀態
$ git merge dev -Xtheirs # 以合併dev分支到當前分支,有衝突則以dev分支為準
$ git rebase <branch> # 衍合指定分支到當前分支
9.遠端操作
$ git remote -v # 檢視遠端版本庫資訊
$ git remote show <remote> # 檢視指定遠端版本庫資訊
$ git remote add <remote> <url> # 新增遠端版本庫
$ git remote remove <remote> # 刪除指定的遠端版本庫
$ git fetch <remote> # 從遠端庫獲取程式碼
$ git pull <remote> <branch> # 下載程式碼及快速合併
$ git push <remote> <branch> # 上傳程式碼及快速合併
$ git push <remote> :<branch/tag-name> # 刪除遠端分支或標籤
$ git push --tags # 上傳所有標籤
10.打包
$ git archive --format=zip --output ../file.zip master # 將master分支打包成file.zip檔案,儲存在上一級目錄
$ git archive --format=zip --output ../v1.2.zip v1.2 # 打包v1.2標籤的檔案,儲存在上一級目錄v1.2.zip檔案中
$ git archive --format=zip v1.2 > ../v1.2.zip # 作用同上一條命令
11.全域性和區域性配置
- 全域性配置儲存在:
$Home/.gitconfig
- 本地倉庫配置儲存在:
.git/config
12.遠端與本地合併
$ git init # 初始化原生程式碼倉
$ git add . # 新增原生程式碼
$ git commit -m "add local source" # 提交原生程式碼
$ git pull origin master # 下載遠端程式碼
$ git merge master # 合併master分支
$ git push -u origin master # 上傳程式碼
本作品採用《CC 協議》,轉載必須註明作者和本文連結