git 常用命令速查表
建立版本庫
$ git clone
#轉殖遠端版本庫
$ git init #初始化本地版本庫
修改和提交
$ git status
#檢視狀態
$ git diff #檢視變更內容
$ git add
.#跟蹤所有改動過的檔案
$ git add
<
file
>
#跟蹤指定的檔案
$ git mv
#檔案改名
$ git rm<
file
>
#刪除檔案
$ git rm --cached#停止跟蹤檔案但不刪除
$ git commit
-m "commit messages"
#提交所有更新過的檔案
$ git commit
--amend #修改最後一次改動
檢視提交歷史
$ git log #檢視提交歷史
$ git log -p <
file
>
#檢視指定檔案的提交歷史
$ git blame <
file
>
#以列表方式檢視指定檔案的提交歷史
撤銷
$ git reset --hard head #撤銷工作目錄中所有未提交檔案的修改內容
$ git checkout head <
file
>
#撤銷指定的未提交檔案的修改內容
$ git revert <
commit
>
#撤銷指定的提交
$ git log --before="1 days" #退回到之前1天的版本
分支與標籤
$ git branch #顯示所有本地分支
$ git checkout
#切換到指定分支和標籤
$ git branch
#建立新分支
$ git branch -d
#刪除本地分支
$ git tag #列出所有本地標籤
$ git tag
#基於最新提交建立標籤
$ git tag -d
#刪除標籤
合併與衍合
$ git merge
#合併指定分支到當前分支
$ git rebase
#衍合指定分支到當前分支
遠端操作
$ git remote -v #檢視遠端版本庫資訊
$ git remote show
#檢視指定遠端版本庫資訊
$ git remote add
#新增遠端版本庫
$ git fetch
#從遠端庫獲取**
$ git pull
$ git push
#上傳**及快速合併
$ git push :
#刪除遠端分支或標籤
$ git push --tags #上傳所有標籤
修改遠端倉庫位址
修改遠端倉庫的url只是這個命令的乙個功能。
git remote set-url [
--push]
git remote set-url --add [
--push]
git remote set-url --
delete
[--push]
git remote -v
# 檢視當前的遠端倉庫
# 修改為想要設定的遠端倉庫
git remote -v
#驗證一下
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 常用命令速查
英文 含義master 預設開發分支 head 預設開發分支 origin 預設遠端版本庫 head head的父提交 注 此表引用自網際網路 2.修改和提交 3.檢視提交歷史 4.撤銷 5.分支與標籤 6.合併和衍合 7.遠端操作 1.1 轉殖遠端版本庫 git clone1.2 初始化本地版本庫...