git規(guī)范
git輔助工具
練習工具
GUI
github個人博客
Git常用指令備忘
生成公鑰:
ssh-keygen
復制以下SSH公鑰到對應地方:
cat ~/.ssh/id_rsa.pub
測試連接是否成功:
ssh -T git@github.com
配置:
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" # 設置Editor使用textmate
git config -l # 列舉所有配置
Git常用命令 查看囚巴、添加兜粘、提交皮仁、刪除子房、找回舱呻,重置修改文件:
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ū)恢復到工作文件
git reset -- . # 從暫存區(qū)恢復到工作文件
git reset --hard # 恢復最近一次提交過的狀態(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> # 恢復某次提交的狀態(tài)横蜒,恢復動作本身也創(chuàng)建了一次提交對象
git revert HEAD # 恢復最后一次提交的狀態(tài)
查看文件diff:
git diff <file> # 比較當前文件和暫存區(qū)文件差異
git diff
git diff <$id1> <$id2> # 比較兩次提交之間的差異
git diff <branch1>..<branch2> # 在兩個分支之間比較
git diff --staged # 比較暫存區(qū)和版本庫差異
git diff --cached # 比較暫存區(qū)和版本庫差異
git diff --stat # 僅僅比較統(tǒng)計信息
查看提交記錄:
git log
git log <file> # 查看該文件每次提交記錄
git log -p <file> # 查看每次詳細修改內(nèi)容的diff
git log -p -2 # 查看最近兩次詳細修改內(nèi)容的diff
git log --stat # 查看提交統(tǒng)計信息
tig Mac上可以使用tig代替diff和log糊渊,brew install tig
分支合并和rebase:
git merge <branch> # 將branch分支合并到當前分支
git merge origin/master --no-ff # 不要Fast-Foward合并右核,這樣可以生成merge提交
git rebase master <branch> # 將master rebase到branch,相當于:
git co <branch> && git rebase master && git co master && git merge <branch>
Git補丁管理(方便在多臺機器上開發(fā)同步時用):
git diff > ../sync.patch # 生成補丁
git apply ../sync.patch # 打補丁
git apply --check ../sync.patch # 測試補丁能否成功
Git暫存管理:
git stash # 暫存
git stash list # 列所有stash
git stash apply # 恢復暫存的內(nèi)容
git stash drop # 刪除暫存區(qū)
Git遠程分支管理:
git pull # 抓取遠程倉庫所有分支更新并合并到本地
git pull --no-ff # 抓取遠程倉庫所有分支更新并合并到本地渺绒,不要快進合并
git fetch origin # 抓取遠程倉庫更新
git merge origin/master # 將遠程主分支合并到本地當前分支
git co --track origin/branch # 跟蹤某個遠程分支創(chuàng)建相應的本地分支
git co -b <local_branch> origin/<remote_branch> # 基于遠程分支創(chuàng)建本地分支贺喝,功能同上
git push # push所有分支
git push origin master # 將本地主分支推到遠程主分支
git push -u origin master # 將本地主分支推到遠程(如無遠程主分支則創(chuàng)建,用于初始化遠程倉庫)
git push origin <local_branch> # 創(chuàng)建遠程分支宗兼, origin是遠程倉庫名
git push origin <local_branch>:<remote_branch> # 創(chuàng)建遠程分支
git push origin :<remote_branch> #先刪除本地分支(git br -d <branch>)躏鱼,然后再push刪除遠程分支
Git遠程倉庫管理:
git remote -v # 查看遠程服務器地址和倉庫名稱
git remote show origin # 查看遠程服務器倉庫狀態(tài)
git remote add origin git@github:robbin/robbin_site.git # 添加遠程倉庫地址
git remote set-url origin git@github.com:robbin/robbin_site.git # 設置遠程倉庫地址(用于修改遠程倉庫地址)
git remote rm <repository> # 刪除遠程倉庫
創(chuàng)建遠程倉庫:
git clone --bare robbin_site robbin_site.git # 用帶版本的項目創(chuàng)建純版本倉庫
scp -r my_project.git git@git.csdn.net:~ # 將純倉庫上傳到服務器上
mkdir robbin_site.git && cd robbin_site.git && git --bare init # 在服務器創(chuàng)建純倉庫
git remote add origin git@github.com:robbin/robbin_site.git # 設置遠程倉庫地址
git push -u origin master # 客戶端首次提交
git push -u origin develop # 首次將本地develop分支提交到遠程develop分支,并且track
git remote set-head origin master # 設置遠程倉庫的HEAD指向master分支
也可以命令設置跟蹤遠程庫和本地庫
git branch --set-upstream master origin/master
git branch --set-upstream develop origin/develop
Problem& Solution
Problem_0
私有秘鑰必須大于4位
Solution
對應修改之
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” # 設置Editor使用textmate
git config -l # 列舉所有配置