建立 | create
$ git clone ssh: 轉殖遠端倉庫
$ git init 初始化本地 git 倉庫(新建倉庫)
本地更改 | local changes
$ git status 檢視當前版本狀態(是否修改)
$ git
diff 顯示所有未新增至 index 的變更
$ git
diff head 檢視已快取的與未快取的所有改動
$ git add 將該檔案新增到快取
$ git commit -m 『***』 提交
$ git commit --amend -m 『***』 合併上一次提交(用於反覆修改)
$ git commit -am 『***』 將 add 和 commit 合為一步
撤消 | undo
$ git reset --hard head 將當前版本重置為 head(用於 merge 失敗)
$ git reset --hard 將當前版本重置至某乙個提交狀態(慎用!
)$ git reset 將當前版本重置至某乙個提交狀態,**不變
$ git reset --merge 重置至某一狀態,保留版本庫中不同的檔案
$ git reset --keep 重置至某一狀態,重置變化的檔案,**改變
$ git checkout head 丟棄本地更改資訊並將其存入特定檔案
$ git revert 撤消提交
提交歷史記錄 | commit history
$ git log 顯示日誌
$ git show 顯示某個提交的詳細內容
$ git blame 在每一行顯示 commit 號,提交者,最早提交日期
分支機構和標籤 | branches & tags
$ git branch 顯示本地分支
$ git checkout
切換分支
$ git branch 新建分支
$ git branch --track
建立新分支跟蹤遠端分支
$ git branch -d
刪除本地分支
$ git tag 給當前分支打標籤
更新和發布 | update & publish
$ git remote -v 列出遠端分支詳細資訊
$ git remote show 顯示某個分支資訊
$ git remote add
新增乙個新的遠端倉庫
$ git fetch 獲取遠端分支,但不更新本地分支,另需 merge
$ git pull
獲取遠端分支,並更新本地分支
$ git push
推送本地更新到遠端分支
$ git push --delete
刪除乙個遠端分支
$ git push --tags 推送本地標籤
合併與衍合 | merge & rebase
$ git merge
合併分支到當前分支,存在兩個
$ git rebase
合併分支到當前分支,存在乙個
$ git rebase --abort 回到執行 rebase 之前
$ git rebase --continue 解決矛盾後繼續執行 rebase
$ git mergetool 使用 mergetool 解決衝突
$ git add 使用衝突檔案解決衝突
$ git
rm幫助 | help幫助 | help
$ git
help
獲取命令列上的幫助*********x2 1$ git clone ssh: 轉殖遠端倉庫2$ git init 初始化本地 git 倉庫(新建倉庫)
常用命令 Git 常用命令大全
安裝教程可參照 廖雪峰老師的安裝教程。git config 在git中,使用git config 命令來配置 git 的配置檔案,git配置級別主要有3類 1 倉庫級別 local 本地 git 倉庫級別配置檔案,作用於當前倉庫。優先順序最高 2 使用者級別 global,全域性配置檔案,作用於所有...
git 常用命令
檢視是否存在檔案需要上傳 git status git add git commit m 建立遠端倉庫 git remote add origin 116.255.146.153 ruby cd work daily project.git 更新git fetch 116.255.146.153 r...
git常用命令
詳細 1,git log p 命令來顯示每一次提交與其父節點提交內容之間快照的差異。2,為了檢視載入 staged 而並未提交 not committed 的內容差異,可以使用 git diff stage 命令 在git 1.6之前的版本中,使用 cached 適應情形 在執行git commit...