您好,登錄后才能下訂單哦!
這篇文章主要介紹“常用的git命令整理”,在日常操作中,相信很多人在常用的git命令整理問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”常用的git命令整理”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
安裝 git
要檢查是否安裝了Git,在終端運(yùn)行:
$ git version git version 2.27.0.rc1.windows.1
如果沒有安裝,請(qǐng)按照 https://git-scm.com/downloads 上的說(shuō)明。Mac用戶可以用brew來(lái)安裝它:brew install git。
配置 git
我們只需要配置一些東西
git config --global user.name "前端小智" && # 你的名字 git config --global user.email johndoe@example.com && # 你的郵箱 git config --global init.defaultbranch main # 默認(rèn)分支名稱,與GitHub兼容
可以用下面命令查看當(dāng)前的全局配置
git config --global --list # Type ":q" to close
git在純文本中存儲(chǔ)配置,如果你想直接修改,可以直接在~/.gitconfig或~/.config/git/config中編輯全局配置。
正如命令所建議的那樣,去掉--global會(huì)使這些命令的適用范圍擴(kuò)大到當(dāng)前文件夾。但要測(cè)試這一點(diǎn),我們需要一個(gè)存儲(chǔ)庫(kù)。
創(chuàng)建新存儲(chǔ)庫(kù)
存儲(chǔ)庫(kù)只是一個(gè)文件夾,里面有我們想跟蹤的所有東西。通過(guò)命令創(chuàng)建:
mkdir gitexample && cd gitexample && git init # gitexample git:(main)
這個(gè)命令在gitexample文件夾內(nèi)創(chuàng)建了一個(gè).git文件夾。這個(gè)隱藏的.git文件夾就是版本庫(kù):所有的本地配置和修改都存儲(chǔ)在這里。
改變
在存儲(chǔ)庫(kù)中創(chuàng)建一些東西:
echo "Hello, Git " >> hello.txt
運(yùn)行g(shù)it status,我們會(huì)看到新創(chuàng)建的未被追蹤的文件。
git status # On branch main # # No commits yet # # Untracked files: # (use "git add <file>..." to include in what will be committed) # hello.txt # # nothing added to commit but untracked files present (use "git add" to track)
根據(jù)提示建議,我們添加文件:
git add .
如果我們不想要所有文件提添加可以使用
git add hello.txt
如果你現(xiàn)在檢查版本庫(kù)的狀態(tài),你會(huì)看到文件已經(jīng)被添加了(又稱staged),但還沒有提交。
git status # On branch main # # No commits yet # # Changes to be committed: # (use "git rm --cached <file>..." to unstage) # new file: hello.txt
為了記錄這些變化,我們來(lái)提交它。
git commit -m "Add hello.txt" # [main (root-commit) a07ee27] Adds hello.txt # 1 file changed, 2 insertions(+) # create mode 100644 hello.txt
git commit -m <MESSAGE> 是一個(gè)簡(jiǎn)短的命令,你可以用git commit打開編輯器(主要是vim),提供詳細(xì)的提交描述。
檢查提交記錄:
git log # Author: qq449245884 <44924566884@qq.com> # Date: Sat Jul 17 14:57:24 2021 +0800 # # Add hello.txt #
創(chuàng)建分支
在很多情況下,擁有一個(gè)獨(dú)立的初始代碼版本是很有用的:例如,在測(cè)試你不確定的功能時(shí),或者在一起工作時(shí)避免代碼沖突。這正是git分支的意義所在:它從歷史上的一個(gè)特定點(diǎn)開始生長(zhǎng)。
要?jiǎng)?chuàng)建分支,運(yùn)行g(shù)it branch NAME,要切換分支,運(yùn)行g(shù)it checkout NAME?;蛘吆?jiǎn)單地
git checkout -b dev # 切換到一個(gè)名為“dev”的新分支 # Switched to a new branch 'dev' # gitexample git:(dev)
我們?cè)贖ello.txt文件中更改一些內(nèi)容并提交更改:
echo "\nHello, Git Branch" >> hello.txt && git commit -am "Change hello.txt"
現(xiàn)在,切換到主分支:
git checkout main && cat hello.txt # Switched to branch 'main' # Hello, Git
正如你所看到的,文件內(nèi)容仍然和原來(lái)一樣。為了比較分支,我們可以運(yùn)行。
git diff dev # diff --git a/hello.txt b/hello.txt # index 360c923..b7aec52 100644 # --- a/hello.txt # +++ b/hello.txt # @@ -1,3 +1 @@ # Hello, Git # - # -Hello, Git Branch # (END) # type ":q" to close
我們?cè)谥鞣种е羞M(jìn)行更改:
echo "\nHi from Main Branch" >> hello.txt && git commit -am "Change hello.txt from main" # [main 9b60c4b] Change hello.txt from main # 1 file changed, 2 insertions(+)
現(xiàn)在讓我們?cè)囍堰@些變化合并起來(lái)。
git merge dev # Auto-merging hello.txt # CONFLICT (content): Merge conflict in hello.txt # Automatic merge failed; fix conflicts and then commit the result.
因?yàn)槲募谕粋€(gè)地方被修改了兩次,我們就產(chǎn)生了沖突。看看這個(gè)文件
cat hello.txt <<<<<<< HEAD Hello, Git Hi from Main Branch ======= Hello, Git >>>>>>> dev
還有一個(gè)命令可以單獨(dú)查看更改:
git diff --ours # :q to close git diff --theirs #:q to close
你可以手動(dòng)編輯文件并提交修改,但我們?cè)O(shè)想一下,我們只想要其中一個(gè)版本。我們就從中止合并開始。
git merge --abort
并以 "theirs"策略重新啟動(dòng)合并,這意味著在發(fā)生沖突時(shí),我們將使用傳入的分支所堅(jiān)持的東西。
git merge -X theirs dev # Auto-merging hello.txt # Merge made by the 'recursive' strategy. # hello.txt | 5 +---- # 1 file changed, 1 insertion(+), 4 deletions(-)
與此策略相反的是 "ours"。將這兩個(gè)改動(dòng)合并在一起,需要手動(dòng)編輯(或使用git mergetool)。
查看所有分支運(yùn)行的列表
git branch # type :q to close # dev # * main
最后,刪除分支運(yùn)行:
git branch -d dev # Deleted branch dev (was 6259828).
重置分支
分支從 git 歷史中的某一點(diǎn)開始 "生長(zhǎng)(grow)",rebase 允許改變這個(gè)點(diǎn)。我們?cè)賱?chuàng)建一個(gè)分支,并在hello.txt上添加一些改動(dòng)。
git checkout -b story && echo "Once upon a time there was a file">>story.txt && git add story.txt && git commit -m "Add story.txt" # Switched to a new branch 'story' # [story eb996b8] Add story.txt # 1 file changed, 1 insertion(+) # create mode 100644 story.txt
現(xiàn)在,我們回到主分支并添加更改:
git checkout main && echo "Other changes" >> changes.txt && git add changes.txt && git commit -m "Add changes.txt"
重置我們?cè)趍ain到story分支所做的更改:
git checkout story && git rebase main # Successfully rebased and updated refs/heads/story.
可以看到在主分支創(chuàng)建的新文件被添加到story 分支。
ls # changes.txt hello.txt story.txt
注意:不要rebase 別人可能使用過(guò)的分支,例如主分支。另外,請(qǐng)記住,在遠(yuǎn)程版本庫(kù)上進(jìn)行的每一次歷史操作都需要強(qiáng)制這些修改生效。
遠(yuǎn)程存儲(chǔ)庫(kù)
如果你還沒有,請(qǐng)創(chuàng)建一個(gè)GitHub賬戶,登錄并創(chuàng)建一個(gè)新的空倉(cāng)庫(kù)(私有或公共)。
假設(shè)版本庫(kù)的名字是 "example",運(yùn)行以下命令(改成你的用戶名)。
git remote add origin git@github.com:USERNAME/example.git && git push -u origin main
你可以刷新頁(yè)面,看到主分支的文件。要把所有本地分支推送到遠(yuǎn)程倉(cāng)庫(kù),請(qǐng)運(yùn)行。
git push --all origin
我們?cè)贕itHub上編輯一些東西:只要點(diǎn)擊任何文件和鉛筆圖標(biāo)。添加一行你想要的任何文字,然后按 "提交修改"。
在本地運(yùn)行這個(gè)命令,以獲得遠(yuǎn)程的變化?!就扑]:Git教程】
git checkout main && git pull
管理未提交的更改
如果你想保存你的本地修改以便以后使用,你可以使用git stash。
echo "Changes" >> hello.txt && git stash
現(xiàn)在你可以使用以下命令來(lái)檢查、應(yīng)用或放棄這些變化。
git stash list # stash@{0}: WIP on main: 92354c8 Update changes.txt git stash pop # 應(yīng)用更改 git stash drop # 撤銷修改
你可以使用 stash 編號(hào),即git stash pop 0來(lái)應(yīng)用一個(gè)特定的儲(chǔ)藏庫(kù),或者git stash drop 0來(lái)撤銷。
如果你想放棄所有的本地修改,只需恢復(fù)版本庫(kù)到最后提交的修改,請(qǐng)運(yùn)行。
git restore .
管理提交的更改
一旦你創(chuàng)建了一個(gè)提交,這個(gè)變化就會(huì)保存在本地的git歷史中。如前所述,所有影響遠(yuǎn)程歷史的修改都需要git push --force。以下所有命令都要記住這一點(diǎn)。
我們從編輯最后的提交信息開始。
git commit --amend # type :wq to save and close # Press "i" to edit, "Esc" to stop editing
我們把一切重設(shè)到最開始怎么樣?
要找到第一次提交的ID,請(qǐng)運(yùn)行這個(gè)命令并滾動(dòng)(向下箭頭)到最后。
git log --abbrev-commit # commit a07ee27 # Author: Your Name <your@email.address> Date: Sun Jul 11 11:47:16 2021 +0200 Adds hello.txt (END) # type ":q" to close
現(xiàn)在運(yùn)行這個(gè)來(lái)重置版本庫(kù),但保持所有的修改不被緩存。
git reset --soft COMMIT # e.g. a07ee27
與之相反,你也可以進(jìn)行硬重置,用git reset --hard COMMIT來(lái)刪除所有修改。還有幾種其他的重置方式,你可以從git文檔中了解到。
別名
大多數(shù)時(shí)候,你只需要使用少數(shù)幾個(gè)命令(主要是checkout、add、commit、pull、push和merge),但有些命令可能是你想要“以防萬(wàn)一”的。
存儲(chǔ)這些信息的一種方法是git aliases。要配置一個(gè)別名,只需在配置中設(shè)置它。例如,我經(jīng)常使用的一個(gè)別名是git tree,它以樹的形式打印出一個(gè)漂亮的歷史日志。
git config --global alias.tree 'log --graph --decorate --pretty=oneline --abbrev-commit' # Try it with `git tree`
另一個(gè)有用的別名是刪除所有合并的分支。
git config --global alias.clbr '!git branch --merged | grep -v \* | xargs git branch -D'
你可以看到它的前綴是"!",這允許我們使用任何命令,而不僅僅是git命令。
到此,關(guān)于“常用的git命令整理”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。