Git配置 1 2 3 4 5 6 7 8 9 git config --global user.name "robbin" git config --global user.email "fankai#gmail.com" git config --global color.ui true git config --global alias.co checkout git config --global alias.ci commit git config --global alias.st status git config --global alias.br branch git config --global core.editor "mate -w" # 設(shè)置Editor使用textmate git config -1 #列舉所有配置 用戶的git配置文件~/.gitconfig Git常用命令 查看、添加、提交、刪除、找回,重置修改文件 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 git help <command> # 顯示command的help git show # 顯示某次提交的內(nèi)容 git show $id git co -- <file> # 拋棄工作區(qū)修改 git co . # 拋棄工作區(qū)修改 git add <file> # 將工作文件修改提交到本地暫存區(qū) git add . # 將所有修改過的工作文件提交暫存區(qū) git rm <file> # 從版本庫中刪除文件 git rm <file> --cached # 從版本庫中刪除文件,但不刪除文件 git reset <file> # 從暫存區(qū)恢復(fù)到工作文件 git reset -- . # 從暫存區(qū)恢復(fù)到工作文件 git reset --hard # 恢復(fù)最近一次提交過的狀態(tài),即放棄上次提交后的所有本次修改 git ci <file> git ci . git ci -a # 將git add, git rm和git ci等操作都合并在一起做 git ci -am "some comments" git ci --amend # 修改最后一次提交記錄 git revert <$id> # 恢復(fù)某次提交的狀態(tài),恢復(fù)動作本身也創(chuàng)建了一次提交對象 git revert HEAD # 恢復(fù)最后一次提交的狀態(tài) 查看文件diff 1 2 3 4 5 6 7 git diff <file> # 比較當(dāng)前文件和暫存區(qū)文件差異 git diff git diff <$id1> <$id2> # 比較兩次提交之間的差異 git diff <branch1>..<branch2> # 在兩個分支之間比較 git diff --staged # 比較暫存區(qū)和版本庫差異 git diff --cached # 比較暫存區(qū)和版本庫差異 git diff --stat # 僅僅比較統(tǒng)計信息 查看提交記錄 1 2 3 4 5 git log git log <file> # 查看該文件每次提交記錄 git log -p <file> # 查看每次詳細(xì)修改內(nèi)容的diff git log -p -2 # 查看最近兩次詳細(xì)修改內(nèi)容的diff git log --stat #查看提交統(tǒng)計信息 tig Mac上可以使用tig代替diff和log,brew install tig Git 本地分支管理 查看、切換、創(chuàng)建和刪除分支 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 git br -r # 查看遠(yuǎn)程分支 git br <new_branch> # 創(chuàng)建新的分支 git br -v # 查看各個分支最后提交信息 git br --merged # 查看已經(jīng)被合并到當(dāng)前分支的分支 git br --no-merged # 查看尚未被合并到當(dāng)前分支的分支 git co <branch> # 切換到某個分支 git co -b <new_branch> # 創(chuàng)建新的分支,并且切換過去 git co -b <new_branch> <branch> # 基于branch創(chuàng)建新的new_branch git co $id # 把某次歷史提交記錄checkout出來,但無分支信息,切換到其他分支會自動刪除 git co $id -b <new_branch> # 把某次歷史提交記錄checkout出來,創(chuàng)建成一個分支 git br -d <branch> # 刪除某個分支 git br -D <branch> # 強制刪除某個分支 (未被合并的分支被刪除的時候需要強制) 分支合并和rebase 1 2 3 4 5 git merge <branch> # 將branch分支合并到當(dāng)前分支 git merge origin/master --no-ff # 不要Fast-Foward合并,這樣可以生成merge提交 git rebase master <branch> # 將master rebase到branch,相當(dāng)于: git co <branch> && git rebase master && git co master && git merge <branch> Git補丁管理(方便在多臺機器上開發(fā)同步時用) 1 2 3 git diff > ../sync.patch # 生成補丁 git apply ../sync.patch # 打補丁 git apply --check ../sync.patch #測試補丁能否成功 Git暫存管理 1 2 3 4 git stash # 暫存 git stash list # 列所有stash git stash apply # 恢復(fù)暫存的內(nèi)容 git stash drop # 刪除暫存區(qū) Git遠(yuǎn)程分支管理 1 2 3 4 5 6 7 8 9 10 11 12 13 git pull # 抓取遠(yuǎn)程倉庫所有分支更新并合并到本地 git pull --no-ff # 抓取遠(yuǎn)程倉庫所有分支更新并合并到本地,不要快進(jìn)合并 git fetch origin # 抓取遠(yuǎn)程倉庫更新 git merge origin/master # 將遠(yuǎn)程主分支合并到本地當(dāng)前分支 git co --track origin/branch # 跟蹤某個遠(yuǎn)程分支創(chuàng)建相應(yīng)的本地分支 git co -b <local_branch> origin/<remote_branch> # 基于遠(yuǎn)程分支創(chuàng)建本地分支,功能同上 git push # push所有分支 git push origin master # 將本地主分支推到遠(yuǎn)程主分支 git push -u origin master # 將本地主分支推到遠(yuǎn)程(如無遠(yuǎn)程主分支則創(chuàng)建,用于初始化遠(yuǎn)程倉庫) git push origin <local_branch> # 創(chuàng)建遠(yuǎn)程分支, origin是遠(yuǎn)程倉庫名 git push origin <local_branch>:<remote_branch> # 創(chuàng)建遠(yuǎn)程分支 git push origin :<remote_branch> #先刪除本地分支(git br -d <branch>),然后再push刪除遠(yuǎn)程分支 Git遠(yuǎn)程倉庫管理 github 1 2 3 4 5 git remote -v # 查看遠(yuǎn)程服務(wù)器地址和倉庫名稱 git remote show origin # 查看遠(yuǎn)程服務(wù)器倉庫狀態(tài) git remote add origin git@ github:robbin/robbin_site.git # 添加遠(yuǎn)程倉庫地址 git remote set-url origin git@ github.com:robbin/robbin_site.git # 設(shè)置遠(yuǎn)程倉庫地址(用于修改遠(yuǎn)程倉庫地址) git remote rm <repository> # 刪除遠(yuǎn)程倉庫 創(chuàng)建遠(yuǎn)程倉庫 1 2 3 4 5 6 7 8 9 git clone --bare robbin_site robbin_site.git # 用帶版本的項目創(chuàng)建純版本倉庫 scp -r my_project.git git@ git.csdn.net:~ # 將純倉庫上傳到服務(wù)器上 mkdir robbin_site.git && cd robbin_site.git && git --bare init # 在服務(wù)器創(chuàng)建純倉庫 git remote add origin git@ github.com:robbin/robbin_site.git # 設(shè)置遠(yuǎn)程倉庫地址 git push -u origin master # 客戶端首次提交 git push -u origin develop # 首次將本地develop分支提交到遠(yuǎn)程develop分支,并且track git remote set-head origin master # 設(shè)置遠(yuǎn)程倉庫的HEAD指向master分支 也可以命令設(shè)置跟蹤遠(yuǎn)程庫和本地庫 1 2 git branch --set-upstream master origin/master git branch --set-upstream develop origin/develop
|
|
來自: dna26 > 《程序設(shè)計》