查看揍魂、添加、提交袜硫、刪除备闲、找回晌端,重置修改文件
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 . # 將所有修改過(guò)的工作文件提交暫存區(qū)
git rm <file> # 從版本庫(kù)中刪除文件
git rm <file> --cached # 從版本庫(kù)中刪除文件,但不刪除文件
git reset <file> # 從暫存區(qū)恢復(fù)到工作文件
git reset -- . # 從暫存區(qū)恢復(fù)到工作文件
git reset --hard # 恢復(fù)最近一次提交過(guò)的狀態(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ù)動(dòng)作本身也創(chuàng)建次提交對(duì)象
git revert HEAD # 恢復(fù)最后一次提交的狀態(tài)
查看文件diff
git diff <file> # 比較當(dāng)前文件和暫存區(qū)文件差異 git diff
git diff <id1><id2> # 比較兩次提交之間的差異
git diff <branch1>..<branch2> # 在兩個(gè)分支之間比較
git diff --staged # 比較暫存區(qū)和版本庫(kù)差異
git diff --cached # 比較暫存區(qū)和版本庫(kù)差異
git diff --stat # 僅僅比較統(tǒng)計(jì)信息
查看提交記錄
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)計(jì)信息
tig
Mac上可以使用tig代替diff和log,brew install tig
Git 本地分支管理
查看泻骤、切換漆羔、創(chuàng)建和刪除分支
git br -r # 查看遠(yuǎn)程分支
git br <new_branch> # 創(chuàng)建新的分支
git br -v # 查看各個(gè)分支最后提交信息
git br --merged # 查看已經(jīng)被合并到當(dāng)前分支的分支
git br --no-merged # 查看尚未被合并到當(dāng)前分支的分支
git co <branch> # 切換到某個(gè)分支
git co -b <new_branch> # 創(chuàng)建新的分支,并且切換過(guò)去
git co -b <new_branch> <branch> # 基于branch創(chuàng)建新的new_branch
git co $id # 把某次歷史提交記錄checkout出來(lái)狱掂,但無(wú)分支信息演痒,切換到其他分支會(huì)自動(dòng)刪除
git co $id -b <new_branch> # 把某次歷史提交記錄checkout出來(lái),創(chuàng)建成一個(gè)分支
git br -d <branch> # 刪除某個(gè)分支
git br -D <branch> # 強(qiáng)制刪除某個(gè)分支 (未被合并的分支被刪除的時(shí)候需要強(qiáng)制)
分支合并和rebase
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補(bǔ)丁管理(方便在多臺(tái)機(jī)器上開(kāi)發(fā)同步時(shí)用)
git diff > ../sync.patch # 生成補(bǔ)丁
git apply ../sync.patch # 打補(bǔ)丁
git apply --check ../sync.patch #測(cè)試補(bǔ)丁能否成功
Git暫存管理
git stash # 暫存
git stash list # 列所有stash
git stash apply # 恢復(fù)暫存的內(nèi)容
git stash drop # 刪除暫存區(qū)
Git遠(yuǎn)程分支管理
git pull # 抓取遠(yuǎn)程倉(cāng)庫(kù)所有分支更新并合并到本地
git pull --no-ff # 抓取遠(yuǎn)程倉(cāng)庫(kù)所有分支更新并合并到本地,不要快進(jìn)合并
git fetch origin # 抓取遠(yuǎn)程倉(cāng)庫(kù)更新
git merge origin/master # 將遠(yuǎn)程主分支合并到本地當(dāng)前分支
git co --track origin/branch # 跟蹤某個(gè)遠(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)程(如無(wú)遠(yuǎn)程主分支則創(chuàng)建,用于初始化遠(yuǎn)程倉(cāng)庫(kù))
git push origin <local_branch> # 創(chuàng)建遠(yuǎn)程分支养筒, origin是遠(yuǎn)程倉(cāng)庫(kù)名
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)程倉(cāng)庫(kù)管理
git remote -v # 查看遠(yuǎn)程服務(wù)器地址和倉(cāng)庫(kù)名稱(chēng)
git remote show origin # 查看遠(yuǎn)程服務(wù)器倉(cāng)庫(kù)狀態(tài)
git remote add origin git@ github:robbin/robbin_site.git # 添加遠(yuǎn)程倉(cāng)庫(kù)地址
git remote set-url origin git@ github.com:robbin/robbin_site.git # 設(shè)置遠(yuǎn)程倉(cāng)庫(kù)地址(用于修改遠(yuǎn)程倉(cāng)庫(kù)地址) git remote rm <repository> # 刪除遠(yuǎn)程倉(cāng)庫(kù)
創(chuàng)建遠(yuǎn)程倉(cāng)庫(kù)
git clone --bare robbin_site robbin_site.git # 用帶版本的項(xiàng)目創(chuàng)建純版本倉(cāng)庫(kù)
scp -r my_project.git git@ git.csdn.net:~ # 將純倉(cāng)庫(kù)上傳到服務(wù)器上
mkdir robbin_site.git && cd robbin_site.git && git --bare init # 在服務(wù)器創(chuàng)建純倉(cāng)庫(kù)
git remote add origin git@ github.com:robbin/robbin_site.git # 設(shè)置遠(yuǎn)程倉(cāng)庫(kù)地址
git push -u origin master # 客戶(hù)端首次提交
git push -u origin develop # 首次將本地develop分支提交到遠(yuǎn)程develop分支,并且track
git remote set-head origin master # 設(shè)置遠(yuǎn)程倉(cāng)庫(kù)的HEAD指向master分支
也可以命令設(shè)置跟蹤遠(yuǎn)程庫(kù)和本地庫(kù)
git branch --set-upstream master origin/master
git branch --set-upstream develop origin/develop
一些可能遇到的問(wèn)題解決:
如果輸入$ git remote add origin git@github.com:djqiang(github帳號(hào)名)/gitdemo(項(xiàng)目名).git
提示出錯(cuò)信息:fatal: remote origin already exists.
解決辦法如下:
1晕粪、先輸入$ git remote rm origin
2挤悉、再輸入$ git remote add origin git@github.com:djqiang/gitdemo.git 就不會(huì)報(bào)錯(cuò)了!
3巫湘、如果輸入$ git remote rm origin 還是報(bào)錯(cuò)的話装悲,error: Could not remove config section ‘remote.origin’. 我們需要修改gitconfig文件的內(nèi)容
4、找到你的github的安裝路徑尚氛,我的是C:\Users\ASUS\AppData\Local\GitHub\PortableGit_ca477551eeb4aea0e4ae9fcd3358bd96720bb5c8\etc
5诀诊、找到一個(gè)名為gitconfig的文件,打開(kāi)它把里面的[remote "origin"]那一行刪掉就好了阅嘶!
如果輸入$ ssh -T git@github.com
出現(xiàn)錯(cuò)誤提示:Permission denied (publickey).因?yàn)樾律傻膋ey不能加入ssh就會(huì)導(dǎo)致連接不上github属瓣。
解決辦法如下:
1载迄、先輸入$ ssh-agent,再輸入$ ssh-add ~/.ssh/id_key抡蛙,這樣就可以了护昧。
2、如果還是不行的話粗截,輸入ssh-add ~/.ssh/id_key 命令后出現(xiàn)報(bào)錯(cuò)Could not open a connection to your authentication agent.解決方法是key用Git Gui的ssh工具生成惋耙,這樣生成的時(shí)候key就直接保存在ssh中了,不需要再ssh-add命令加入了熊昌,其它的user绽榛,token等配置都用命令行來(lái)做。
3浴捆、最好檢查一下在你復(fù)制id_rsa.pub文件的內(nèi)容時(shí)有沒(méi)有產(chǎn)生多余的空格或空行蒜田,有些編輯器會(huì)幫你添加這些的。
如果輸入$ git push origin master
提示出錯(cuò)信息:error:failed to push som refs to …….
解決辦法如下:
1选泻、先輸入$ git pull origin master //先把遠(yuǎn)程服務(wù)器github上面的文件拉下來(lái)
2冲粤、再輸入$ git push origin master
3、如果出現(xiàn)報(bào)錯(cuò) fatal: Couldn’t find remote ref master或者fatal: ‘origin’ does not appear to be a git repository以及fatal: Could not read from remote repository.
4页眯、則需要重新輸入$ git remote add origingit@github.com:djqiang/gitdemo.git