常用命令
git clone // 轉殖( clone an existing repository)
git init // 初始化 (create a new local repository)
git status // 檢視檔案修改狀態(changed files in your working directory)
git diff // 檢視修改內容 (changes to tracked files)
git add . // 所有檔案新增到暫存區(add all current changes to the next commit)
git add // 某個檔案新增到暫存區( add some changes in to the next commit)
git commit -m 'message' // 提交到版本庫 -m 後加提交的資訊
git log // 檢視提交歷史(show all commits, starting with newest)
git log --graph // 檢視分支合併圖
git relog // 檢視命令歷史
git branch -a //檢視所有分支(包括本地和遠端)(list all existing branches)
git branch // 檢視所有本地分支
git branch < name> // 建立乙個新的本地分支
git branch -d // 刪除某個分支
git branch -d // 強制刪除某個分支
git checkout // 切換到某個分支
git checkout -b // 建立並切換到某個分支
git switch //建立並切換到某個分支
git tag // 建立乙個標籤
git remote -v // list all currently configured remotes
git remote show // show information about a remote
git fetch // download all changes form ,but don't integrate into head
git pull
// download changes form directly merge/integrate into head
git push
// publish local changes on a remote
git push --tags // publish your tags
git fetch 和 git pull的區別
git fetch:相當於是從遠端獲取最新版本到本地,不會自動merge
git pull:相當於是從遠端獲取最新版本並merge到本地
git merge
//把某個分支合併到當前分支下( merge
into your current head)
git rebase
// rebase your current head onto
git checkout --file // 撤銷某個檔案的修改
git reset --hard head // 版本回退到上個版本(discard all local changes in your working directory)
git reset --hard commit_id // 版本回退到某個commit id
git revert // 撤銷 某次操作
常用命令的用法
建立初始化乙個git倉庫,使用git init命令。
git init
轉殖乙個git倉庫,使用git clone 命令
git clone 《位址鏈結》
本地相關操作
新增檔案到git倉庫,分兩步:
git add .
git commit -m '本次提交的說明'
檢視工作區狀態
git status
git diff
提交後的歷史檢視
版本回退
git reset --hard commit_id
git reset --hard head^
git log
git log --pretty=oneline
git reflog
解決衝突
分支相關操作
git branch
git branch < name>
git checkout < name>
git switch < name>
git checkout -b < name>
git switch -c < name>
git merge
git branch -d < name>
git branch -d < name>
撤銷修改
命令git checkout – file意思就是,把檔案在工作區的修改全部撤銷,這裡有兩種情況:
總結:1、直接丟棄工作區的修改時,用命令git checkout – file。 2、新增到了暫存區時,想丟棄修改,分兩步,第一步用命令git reset head < file>,就回到了1,第二步按1操作,用命令git checkout – file。
遠端倉庫
從遠端轉殖
關聯遠端倉庫
git remote add origin
git push
3.從遠處分支上拉取**
git pull
git fetch
標籤管理
建立標籤
git tag < tagname>
git tag
git show < tagname>
刪除標籤
git push origin < tagname>
git push origin --tags
git tag -d < tagname>
git push origin :refs/tags/< tagname>
分支管理策略
分支策略
在實際開發中,我們應該按照幾個基本原則進行分支管理: 首先,master分支應該是非常穩定的,也就是僅用來發布新版本,平時不能在上面幹活; 那在哪幹活呢?幹活都在dev分支上,也就是說,dev分支是不穩定的,到某個時候,比如1.0版本發布時, 再把dev分支合併到master上,在master分支發布1.0版本;你和你的小夥伴們每個人都在dev分支上幹活, 每個人都有自己的分支,時不時地往dev分支上合併就可以了 合併分支時,加上–no-ff引數就可以用普通模式合併, 合併後的歷史有分支,能看出來曾經做過合併,而fast forward合併就看不出來曾經做過合併。
bug分支
feature分支
遠端分支
因此,多人協作的工作模式通常是這樣:首先,可以試圖用git push origin < branch-name>推送自己的修改;
如果推送失敗,則因為遠端分支比你的本地更新,需要先用git pull試圖合併;如果合併有衝突,則解決衝突,並在本地提交;
沒有衝突或者解決掉衝突後,再用git push origin < branch-name>推送就能成功!
如果git pull提示no tracking information,則說明本地分支和遠端分支的鏈結關係沒有建立,用命令git branch --set-upstream-to < branch-name> origin/< branch-name>。
這就是多人協作的工作模式,一旦熟悉了,就非常簡單。
總結:檢視遠端庫資訊,使用git remote -v;
本地新建的分支如果不推送到遠端,對其他人就是不可見的;
從本地推送分支,使用git push origin branch-name,如果推送失敗,先用git pull抓取遠端的新提交;
在本地建立和遠端分支對應的分支,使用git checkout -b branch-name origin/branch-name,本地和遠端分支的名稱最好一致;
建立本地分支和遠端分支的關聯,使用git branch --set-upstream branch-name origin/branch-name;
從遠端抓取分支,使用git pull,如果有衝突,要先處理衝突。
GIT分布式版本控制系統
git是乙個開源的分布式版本控制系統,用以有效 高速的處理從很小到非常大的專案版本管理。分布式相比於集中式的最大區別在於開發者可以提交到本地,每個開發者通過轉殖 git clone 在本地機器上拷貝乙個完整的git倉庫。專案使用git的一般情景 1 從伺服器上轉殖完整的git倉庫或者建立本地的git...
git分布式版本控制系統
1.git三個工作區 2.使用前配置3.git命令 本地 git init 建立版本庫 在當前資料夾下多出乙個.git檔案 git add 新增到暫存區 git commit m 版本說明 新增到歷史區 git log 檢視日誌 git reflog 檢視所有日誌 git diff 比較工作區和暫存...
GIT分布式版本控制系統
git是一款免費 開源的分布式版本控制系統,用於敏捷高效地處理任何或小或大的專案。1 git的讀音為 g t git是乙個開源的分布式版本控制系統,可以有效 高速的處理從很小到非常大的專案版本管理。2 git 是 linus torvalds 為了幫助管理 linux 核心開發而開發的乙個開放原始碼...