Git 是一個開源的分佈式版本控制系統,用於敏捷高效地處理任何或小或大的項目。Git 是 Linus Torvalds 爲了幫助管理 Linux 內核開發而開發的一個開放源碼的版本控制軟件。Git 與經常使用的版本控制工具 CVS, Subversion 等不一樣,它採用了分佈式版本庫的方式,沒必要服務器端軟件支持。 |
在使用 Git 提交了若干更新以後,又或者克隆了某個項目,想回顧下提交歷史,咱們能夠使用 git log 命令查看。
針對咱們前一章節的操做,使用 git log 命令列出歷史提交記錄以下:php
$ git log commit d5e9fc2c811e0ca2b2d28506ef7dc14171a207d9 (HEAD -> master) Merge: c68142b 7774248 Author: runoob <test@runoob.com> Date: Fri May 3 15:55:58 2019 +0800 Merge branch 'change_site' commit c68142b562c260c3071754623b08e2657b4c6d5b Author: runoob <test@runoob.com> Date: Fri May 3 15:52:12 2019 +0800 修改代碼 commit 777424832e714cf65d3be79b50a4717aea51ab69 (change_site) Author: runoob <test@runoob.com> Date: Fri May 3 15:49:26 2019 +0800 changed the runoob.php commit c1501a244676ff55e7cccac1ecac0e18cbf6cb00 Author: runoob <test@runoob.com> Date: Fri May 3 15:35:32 2019 +0800
咱們能夠用 --oneline 選項來查看歷史記錄的簡潔的版本。html
$ git log --oneline $ git log --oneline d5e9fc2 (HEAD -> master) Merge branch 'change_site' c68142b 修改代碼 7774248 (change_site) changed the runoob.php c1501a2 removed test.txt、add runoob.php 3e92c19 add test.txt 3b58100 第一次版本提交
這告訴咱們的是,此項目的開發歷史。linux
咱們還能夠用 --graph 選項,查看歷史中何時出現了分支、合併。如下爲相同的命令,開啓了拓撲圖選項:git
* d5e9fc2 (HEAD -> master) Merge branch 'change_site' |\ | * 7774248 (change_site) changed the runoob.php * | c68142b 修改代碼 |/ * c1501a2 removed test.txt、add runoob.php * 3e92c19 add test.txt * 3b58100 第一次版本提交
如今咱們能夠更清楚明瞭地看到什麼時候工做分叉、又什麼時候歸併。服務器
你也能夠用 --reverse 參數來逆向顯示全部日誌。分佈式
$ git log --reverse --oneline 3b58100 第一次版本提交 3e92c19 add test.txt c1501a2 removed test.txt、add runoob.php 7774248 (change_site) changed the runoob.php c68142b 修改代碼 d5e9fc2 (HEAD -> master) Merge branch 'change_site'
若是隻想查找指定用戶的提交日誌能夠使用命令:git log --author , 例如,比方說咱們要找 Git 源碼中 Linus 提交的部分:工具
$ git log --author=Linus --oneline -5 81b50f3 Move 'builtin-*' into a 'builtin/' subdirectory 3bb7256 make "index-pack" a built-in 377d027 make "git pack-redundant" a built-in b532581 make "git unpack-file" a built-in 112dd51 make "mktag" a built-in
若是你要指定日期,能夠執行幾個選項:--since 和 --before,可是你也能夠用 --until 和 --after。ui
例如,若是我要看 Git 項目中三週前且在四月十八日以後的全部提交,我能夠執行這個(我還用了 --no-merges 選項以隱藏合併提交):url
$ git log --oneline --before={3.weeks.ago} --after={2010-04-18} --no-merges 5469e2d Git 1.7.1-rc2 d43427d Documentation/remote-helpers: Fix typos and improve language 272a36b Fixup: Second argument may be any arbitrary string b6c8d2d Documentation/remote-helpers: Add invocation section 5ce4f4e Documentation/urls: Rewrite to accomodate transport::address 00b84e9 Documentation/remote-helpers: Rewrite description 03aa87e Documentation: Describe other situations where -z affects git diff 77bc694 rebase-interactive: silence warning when no commits rewritten 636db2c t3301: add tests to use --format="%N"
本文原創地址:https://www.linuxprobe.com/teach-you-to.html版本控制