本文是git常用命令速查文件,如果要看命令的具體介紹和使用可以看我git分類下的其他文章
git常用命令:
所屬內容
功能描述
git 命令
版本庫檔案管理
把本地目錄變成git可管理的倉庫
$ git init
將檔案或者修改新增到倉庫
$ git add
$ git commit -m ""
從版本庫中刪除檔案
$ git rm
$ git commit -m ""
撤銷暫存區的修改
$ git reset head
丟棄工作區的修改
$ git checkout --
回退到某個版本
$ git reset --hard head^ or $ git reset --hard
檢視狀態和記錄
檢視版本庫狀態
$ git status
檢視本地檔案和倉庫檔案的不同
$ git diff
檢視修改記錄
$ git log or $ git log --pretty=oneline
檢視分支合併情況
$ git log --graph --pretty=oneline --abbrev-commit
把分叉的提交歷史整理成一條直線
$ git rebase
$ git log --graph --pretty=oneline --abbrev-commit
分支管理
檢視分支
$ git branch
建立並切換分支
$ git checkout -b
or $ git branch
$ git checkout
合併分支到當前分支
$ git merge
or $ git merge --no-ff -m "description"
刪除分支
$ git branch -d
遠端庫首次把本地庫推送到遠端庫(github)
$ git remote add origin
$ git push -u origin master
從遠端庫(github)轉殖到本地
$ git clone
檢視遠端庫資訊
$ git remote or $ git remote -v
推送分支
$ git push origin
抓取分支
$ git branch --set-upstream-to=origin/
$ git pull
工作現場管理
儲藏工作現場
$ git stash
檢視工作現場
$ git stash list
恢復工作現場並刪除
標籤管理
建立標籤
$ git tag or $ git tag or $ git tag -a -m ""
檢視所有標籤
$ git tag
檢視標籤資訊
$ git show
刪除標籤
$ git tag -d
推送標籤到遠端
$ git push origin or $ git push origin --tags
刪除遠端標籤
$ git tag -d
$ git push origin :refs/tags/
git自定義
讓git顯示顏色
$ git config --global color.ui ture
給git命令配置別名
$ git config --global alias.
常用命令 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...