1. 程式人生 > >幾個常用的 Git 高階命令

幾個常用的 Git 高階命令

Git 是一款開源優秀的版本管理工具,它最初由 Linus Torvalds 等人開發,用於管理 Linux Kernel 的版本研發。相關的書籍和教程網上琳琅滿目,它們多數都詳細的介紹其基本的使用和命令。本人根據自己的經驗,整理出幾個較為高階而常用的命令。

推薦資料 Git Book。

Git blame

Git blame 可以查詢每一行程式碼的 commit ID、提交者和提交日期。


$ git blame nova/api/openstack/compute/servers.py

5b866f3a nova/api/openstack/v2/servers.py               (Kevin L. Mitchell        2012-01-09 13:13:08 -0600  776)     @wsgi.response(202)
5b866f3a nova/api/openstack/v2/servers.py               (Kevin L. Mitchell        2012-01-09 13:13:08 -0600  777)     @wsgi.serializers(xml=FullServerTemplate)
5b866f3a nova/api/openstack/v2/servers.py               (Kevin L. Mitchell        2012-01-09 13:13:08 -0600  778)     @wsgi.deserializers(xml=CreateDeserializer)
5b866f3a nova/api/openstack/v2/servers.py               (Kevin L. Mitchell        2012-01-09 13:13:08 -0600  779)     def create(self, req, body):
cc642ff1 nova/api/openstack/compute/servers.py          (Alex Meade               2012-04-15 21:44:15 -0400  780)         """Creates a new server for a given user."""
d1ad73ee nova/api/openstack/compute/servers.py          (Mark McLoughlin          2012-09-12 12:50:53 +0100  781)         if not self.is_valid_body(body, 'server'):
5b866f3a nova/api/openstack/v2/servers.py               (Kevin L. Mitchell        2012-01-09 13:13:08 -0600  782)             raise exc.HTTPUnprocessableEntity()

Git show

確切的說,Git show 並非是一個高階命令,只是它經常配合 git blame,從而查詢整個 patch。

$ git show 5b866f3a

...

diff --git a/nova/api/openstack/common.py b/nova/api/openstack/common.py
index 5def03f..e96c42a 100644
--- a/nova/api/openstack/common.py
+++ b/nova/api/openstack/common.py
@@ -334,6 +334,21 @@ def get_networks_for_instance(context, instance):
     return networks


+class MetadataDeserializer(wsgi.MetadataXMLDeserializer):
+    def deserialize(self, text):
+        dom = minidom.parseString(text)
+        metadata_node = self.find_first_child_named(dom, "metadata")
+        metadata = self.extract_metadata(metadata_node)

...

Git reflog

Git reflog 記錄了 git 某個分支的每次操作,通常用來恢復誤操作影響的資料。

$ git reflog

1dcfb0f [email protected]{0}: reset: moving to 1dcfb0f
d5640a9 [email protected]{1}: checkout: moving from test to master
1dcfb0f [email protected]{2}: checkout: moving from icehouse to test

$ git reset d5640a9

Git cherry-pick

Git cherry-pick 可從其它分支抓取 commit 合入當前分支中,常用於從 upstream 合入 patch。

$ git cherry-pick -x commit_id

Git rebase

Git rebase 無疑是最為複雜、最難以理解,當然也是非常強大的命令,常用於合併分支,可以簡單的理解為一系列的 git cherry-pick,它具有以下功能。

合併分支 重新修改 Commit,如合併 commit,調整 commit 的順序。 Git rebase 用法請見 Git Book,但是使用時,請注意以下準則:

The golden rule of git rebase is to never use it on public branches.

更多精彩乾貨可關注公眾號後回覆“乾貨”即可免費領取海量乾貨 在這裡插入圖片描述