創(chuàng)建一個(gè)Git 倉庫并上傳至遠(yuǎn)程:
0)創(chuàng)建遠(yuǎn)程倉庫
1)在要?jiǎng)?chuàng)建倉庫的目錄執(zhí)行:
git init
2)創(chuàng)建 .gitignore 文件健芭,設(shè)置哪些文件不需要上傳(可選步驟)
3)commit 倉庫所有文件:
git add --all
git commit -m "initial commit"
4)關(guān)聯(lián)遠(yuǎn)程倉庫
git remote add origin https://github.com/you-user-name/repositry.git
origin 后面的地址是最開始創(chuàng)建的遠(yuǎn)程倉庫的地址。
5)push 到遠(yuǎn)程
git push -u origin master
取消merge:
git merge --abort (git 1.7.4版本之后的命令)
git reset --merge (之前的版本)
回退某個(gè)文件到之前的版本:
(1)git log <filename> 查看文件的commit號(hào)
(2)git checkout <commit number> <filename> 將文件回退到指定commit號(hào)的版本
(3)git commit -m "回退" 進(jìn)行commit
查看代碼提交統(tǒng)計(jì):
git log --author="your_name_here" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' // 查看某人提交和刪除的代碼行數(shù)
掃描 Log 單獨(dú)統(tǒng)計(jì)每個(gè)人的增刪行數(shù)加強(qiáng)版:
git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -; done
選項(xiàng) 說明
-(n) 僅顯示最近的 n 條提交
--since, --after 僅顯示指定時(shí)間之后的提交唤反。
--until, --before 僅顯示指定時(shí)間之前的提交惫确。
如: --since=2017-12-01 指從這個(gè)日期開始統(tǒng)計(jì)
cherry-pick:
命令如下
git cherry-pick commitId
作用:可以單獨(dú)撿出某一個(gè)分支(包括當(dāng)前分支)的一個(gè)或幾個(gè)commit ,合并到當(dāng)前分支眼耀。比如英支,在develop 分支開發(fā),有了兩次提交commit-1 和 commit-2哮伟,這時(shí)突然有需求要先上commit-2 的功能干花,線上分支是master,要想把commit-2 分支合并到master 上楞黄,就可以使用cherry-pick 命令池凄,這樣就會(huì)合并commit-2 而不會(huì)commit-1 代碼。如果cherry-pick 過程中出現(xiàn)沖突鬼廓,按照正常解決沖突方式解決即可肿仑。
附 常用命令:
查看、添加桑阶、提交柏副、刪除、找回蚣录,重置修改文件
git help <command> # 顯示command的help
git show # 顯示某次提交的內(nèi)容 git show $id
git checkout -- <file> # 拋棄工作區(qū)修改
git checkout . # 拋棄工作區(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 commit <file>
git commit .
git commit -a #
將git add, git rm和git commit 等操作都合并在一起做 git ci -am "some comments"
git commit --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><id1><id2> # 比較兩次提交之間的差異
git diff <branch1>..<branch2> # 在兩個(gè)分支之間比較
git diff --staged # 比較暫存區(qū)和版本庫差異
git diff --cached # 比較暫存區(qū)和版本庫差異
git diff --stat commit1 commit2 # 比較兩次commit 差異的統(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 branch -r # 查看遠(yuǎn)程分支
git branch <new_branch> # 創(chuàng)建新的分支
git branch -v # 查看各個(gè)分支最后提交信息
git branch --merged # 查看已經(jīng)被合并到當(dāng)前分支的分支
git branch --no-merged # 查看尚未被合并到當(dāng)前分支的分支
git checkout <branch> # 切換到某個(gè)分支
git checkout -b <new_branch> # 創(chuàng)建新的分支擎椰,并且切換過去
git checkout -b <new_branch> <branch> # 基于branch創(chuàng)建新的new_branch
git checkout $id # 把某次歷史提交記錄checkout出來支子,但無分支信息,切換到其他分支會(huì)自動(dòng)刪除
git checkout $id -b <new_branch> # 把某次歷史提交記錄checkout出來达舒,創(chuàng)建成一個(gè)分支
git branch -d <branch> # 刪除某個(gè)分支
git branch -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 checkout <branch> && git rebase master && git co master && git merge <branch>
Git補(bǔ)丁管理(方便在多臺(tái)機(jī)器上開發(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)程倉庫所有分支更新并合并到本地
git pull --no-ff # 抓取遠(yuǎn)程倉庫所有分支更新并合并到本地巩搏,不要快進(jìn)合并
git fetch origin # 抓取遠(yuǎn)程倉庫更新
git merge origin/master # 將遠(yuǎn)程主分支合并到本地當(dāng)前分支
git checkout --track origin/branch # 跟蹤某個(gè)遠(yuǎn)程分支創(chuàng)建相應(yīng)的本地分支
git checkout -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 push --delete <remote_branch> # 刪除遠(yuǎn)程分支
Git遠(yuǎn)程倉庫管理
GitHub
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)程倉庫
git clone --bare robbin_site robbin_site.git # 用帶版本的項(xiàng)目創(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)程庫和本地庫
git branch --set-upstream master origin/master
git branch --set-upstream develop origin/develop