中文字幕理论片,69视频免费在线观看,亚洲成人app,国产1级毛片,刘涛最大尺度戏视频,欧美亚洲美女视频,2021韩国美女仙女屋vip视频

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書(shū)等14項(xiàng)超值服

開(kāi)通VIP
Git常用命令
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 .           # 將所有修改過(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

1
2
3
4
5
6
7
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ì)信息
查看提交記錄

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)計(jì)信息
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           # 查看各個(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

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補(bǔ)丁管理(方便在多臺(tái)機(jī)器上開(kāi)發(fā)同步時(shí)用)

1
2
3
git diff > ../sync.patch         # 生成補(bǔ)丁
git apply ../sync.patch          # 打補(bǔ)丁
git apply --check ../sync.patch  #測(cè)試補(bǔ)丁能否成功
 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)程倉(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ù)管理

github

1
2
3
4
5
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ù)

1
2
3
4
5
6
7
8
9
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                                      # 客戶端首次提交
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ù)

1
2
git branch --set-upstream master origin/master
git branch --set-upstream develop origin/develop
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開(kāi)APP,閱讀全文并永久保存 查看更多類(lèi)似文章
猜你喜歡
類(lèi)似文章
Git 常用命令整理
【開(kāi)源工具】Git 常用命令清單,掌握這些,輕松駕馭版本管理
git
Git 使用的簡(jiǎn)單匯總
Git 常用命令速查表(三)
Git入門(mén)操作
更多類(lèi)似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服