常用git操作
添加所有變更文件到暫存區(qū) git add . 添加所有變更文件并提交到本地倉庫 git commit -am [commit-message] 新建分支并切換到新分支 git checkout -b [branch-name] 刪除本地分支 git branch -d [branch-name] 刪除遠程分支 git push origin --delete [branch-name] 重置暫存區(qū)與工作區(qū),與上一次commit保持一致 git reset --hard 重置當前分支的指針為指定commit扰才,同時重置暫存區(qū),但工作區(qū)不變 git reset [commitId]
1衩匣、git工作空間
Workspace: 工作區(qū)
Index/Stage:暫存區(qū)
Repository: 倉庫區(qū)(或本地倉庫)
Remote:遠程倉庫
2、新建代碼倉庫
# 在當前目錄新建一個Git代碼庫
$ git init
# 新建一個目錄琅捏,將其初始化為Git代碼庫
$ git init [project-name]
# 下載一個項目和它的整個代碼歷史
$ git clone [url]
3、配置git
# 顯示當前的Git配置
$ git config --list
# 編輯Git配置文件
$ git config -e [--global]
# 設置提交代碼時的用戶信息
$ git config [--global] user.name "[name]"
$ git config [--global] user.email "[email address]"
4柄延、增加/刪除文件
# 添加指定文件到暫存區(qū)
$ git add [file1] [file2] ...
# 添加指定目錄到暫存區(qū)缀程,包括子目錄
$ git add [dir]
# 添加當前目錄的所有文件到暫存區(qū)
$ git add .
5市俊、代碼提交
# 提交暫存區(qū)到倉庫區(qū)
$ git commit -m [message]
# 提交暫存區(qū)的指定文件到倉庫區(qū)
$ git commit [file1] [file2] ... -m [message]
# 提交工作區(qū)自上次commit之后的變化,直接到倉庫區(qū)
$ git commit -a
# 提交時顯示所有diff信息
$ git commit -v
# 使用一次新的commit摆昧,替代上一次提交
# 如果代碼沒有任何新變化,則用來改寫上一次commit的提交信息
$ git commit --amend -m [message]
# 重做上一次commit绅你,并包括指定文件的新變化
$ git commit --amend [file1] [file2] ...
6、分支
# 列出所有本地分支
$ git branch
# 列出所有遠程分支
$ git branch -r
# 列出所有本地分支和遠程分支
$ git branch -a
# 新建一個分支忌锯,但依然停留在當前分支
$ git branch [branch-name]
# 新建一個分支伪嫁,并切換到該分支
$ git checkout -b [branch]
# 新建一個分支汉规,與指定的遠程分支建立追蹤關系
$ git branch --track [branch] [remote-branch]
# 切換到指定分支,并更新工作區(qū)
$ git checkout [branch-name]
# 切換到上一個分支
$ git checkout -
# 建立追蹤關系针史,在現(xiàn)有分支與指定的遠程分支之間
$ git branch --set-upstream [branch] [remote-branch]
# 合并指定分支到當前分支
$ git merge [branch]
# 刪除分支
$ git branch -d [branch-name]
# 刪除遠程分支
$ git push origin --delete [branch-name]
$ git branch -dr [remote/branch]
7、標簽
# 列出所有tag
$ git tag
# 新建一個tag在當前commit
$ git tag [tag]
# 新建一個tag在指定commit
$ git tag [tag] [commit]
# 刪除本地tag
$ git tag -d [tag]
# 刪除遠程tag
$ git push origin :refs/tags/[tagName]
# 查看tag信息
$ git show [tag]
# 提交指定tag
$ git push [remote] [tag]
# 提交所有tag
$ git push [remote] --tags
8啄枕、查看信息
# 顯示有變更的文件
$ git status
# 顯示當前分支的版本歷史
$ git log
# 顯示commit歷史,以及每次commit發(fā)生變更的文件
$ git log --stat
# 搜索提交歷史频祝,根據(jù)關鍵詞
$ git log -S [keyword]
# 顯示指定文件相關的每一次diff
$ git log -p [file]
# 顯示過去5次提交
$ git log -5 --pretty --oneline
# 顯示暫存區(qū)和工作區(qū)的差異
$ git diff
# 顯示暫存區(qū)和上一個commit的差異
$ git diff --cached [file]
# 顯示工作區(qū)與當前分支最新commit之間的差異
$ git diff HEAD
# 顯示兩次提交之間的差異
$ git diff [first-branch]...[second-branch]
# 顯示某次提交的元數(shù)據(jù)和內(nèi)容變化
$ git show [commit]
# 顯示某次提交發(fā)生變化的文件
$ git show --name-only [commit]
# 顯示某次提交時,某個文件的內(nèi)容
$ git show [commit]:[filename]
# 顯示當前分支的最近幾次提交
$ git reflog
9常空、遠程同步
# 下載遠程倉庫的所有變動
$ git fetch [remote]
# 顯示所有遠程倉庫
$ git remote -v
# 顯示某個遠程倉庫的信息
$ git remote show [remote]
# 增加一個新的遠程倉庫,并命名
$ git remote add [shortname] [url]
# 取回遠程倉庫的變化漓糙,并與本地分支合并
$ git pull [remote] [branch]
# 上傳本地指定分支到遠程倉庫
$ git push [remote] [branch]
# 強行推送當前分支到遠程倉庫,即使有沖突
$ git push [remote] --force
# 推送所有分支到遠程倉庫
$ git push [remote] --all
# 更新遠程分支列表
$ git remote update origin -p
10昆禽、撤銷
# 恢復暫存區(qū)的指定文件到工作區(qū)
$ git checkout [file]
# 恢復某個commit的指定文件到暫存區(qū)和工作區(qū)
$ git checkout [commit] [file]
# 恢復暫存區(qū)的所有文件到工作區(qū)
$ git checkout .
# 重置暫存區(qū)的指定文件,與上一次commit保持一致醉鳖,但工作區(qū)不變
$ git reset [file]
# 重置暫存區(qū)與工作區(qū),與上一次commit保持一致
$ git reset --hard
# 重置當前分支的指針為指定commit盗棵,同時重置暫存區(qū)北发,但工作區(qū)不變
$ git reset [commit]
# 重置當前分支的HEAD為指定commit,同時重置暫存區(qū)和工作區(qū)鲫竞,與指定commit一致
$ git reset --hard [commit]
# 重置當前HEAD為指定commit,但保持暫存區(qū)和工作區(qū)不變
$ git reset --keep [commit]
# 暫時將未提交的變化移除逼蒙,稍后再移入
$ git stash
$ git stash pop