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