git 提交歷史一般常用兩個命令:
在使用 git 提交了若干更新之後,又或者轉殖了某個專案,想回顧下提交歷史,我們可以使用 git log 命令檢視。
針對我們前一章節的操作,使用 git log 命令列出歷史提交記錄如下:
$ git logcommit d5e9fc2c811e0ca2b2d28506ef7dc14171a207d9 (head -> master)
merge: c68142b 7774248
author: runoob
date: fri may 3 15:55:58 2019 +0800
merge branch 'change_site'
commit c68142b562c260c3071754623b08e2657b4c6d5b
author: runoob
date: fri may 3 15:52:12 2019 +0800
修改**
commit 777424832e714cf65d3be79b50a4717aea51ab69 (change_site)
author: runoob
date: fri may 3 15:49:26 2019 +0800
changed the runoob.php
commit c1501a244676ff55e7cccac1ecac0e18cbf6cb00
author: runoob
date: fri may 3 15:35:32 2019 +0800
我們可以用 --oneline 選項來檢視歷史記錄的簡潔的版本。
$ 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 第一次版本提交
這告訴我們的是,此專案的開發歷史。
我們還可以用 --graph 選項,檢視歷史中什麼時候出現了分支、合併。以下為相同的命令,開啟了拓撲圖選項:
* 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 第一次版本提交
nba集錦
現在我們可以更清楚明了地看到何時工作分叉、又何時歸併。
你也可以用--reverse引數來逆向顯示所有日誌。
$ git log --reverse --oneline3b58100 第一次版本提交
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 -581b50f3 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。
例如,如果我要看 git 專案中三周前且在四月十八日之後的所有提交,我可以執行這個(我還用了 --no-merges 選項以隱藏合併提交):
$ git log --oneline --before= --after= --no-merges5469e2d 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"
git blame
$ git blame readme^d2097aa (tianqixin 2020-08-25 14:59:25 +0800 1) # runoob git 測試
db9315b0 (runoob 2020-08-25 16:00:23 +0800 2) # 菜鳥教程
git使用命令轉殖檔案到客戶端
接下來是配置過程 服務端 系統 centos7.5 mkdir opt data git p 建立乙個目錄,用作git倉庫 cd opt data git git init 通過命令把這個目錄變成可以被git管理的倉庫 echo 123456 123.txt chown git.git 123.tx...
vim 中可以使用 s 命令來替換
1.全域性替換 1 v g 選定全部,然後輸入 s 原始字串 目標字串 2 s 原始字串 目標字串 2.清除頁面中所有行尾的空白符 s s 3.清除所有空白 s s n r 4.去掉所有的 注釋 s s 5.去掉所有的 注釋 s s s 6.做某些內部資料重複替換 有些時候我們需要組織一些批量的資料...
Git使用命令
初始化本地git倉庫 git init宣告遠端倉庫路徑 git remote add origin 你的遠端專案位址 檢視倉庫位址 git remote v如果結果是正確的則跳過下面的 git remote rm origin 刪除當前連線 git remote add origin xx.git ...