日常開發工作中,**庫是程式設計師關注最多的資源,不論是**入庫,版本發布,還是bug修復,都離不開**庫。**庫的每次提交變動,關係到版本的正常發布。
為了檢視某次提交或者某個檔案的改動記錄,下面介紹幾個命令。
$ git show commit-id
$ git show 6454f159e3642b361f8e
commit 6454f159e3642b361f8ea6afe22c3f264f768b9b
author: lanyang.com>
date: fri oct 28
16:45:24
2016 +0800
206diff --git a/3.txt b/3.txt
index 00750ed..f4540d5 100644
--- a/3.txt
+++ b/3.txt
@@ -1 +1,2 @@
3+206
$ git log -p
檢視最近兩次提交修改的內容
$ git log-p-
2
$ git log -p < file name or directory name>
$ git log -p 1.txt
commit 29c23277f5e306c7514d393781d35e62efe82265
author: [email protected]>
date: fri oct 28
18:03:57
2016 +0800
commit not
push now2
diff --git a/1.txt b/1.txt
index d77212f..cdc1ca1 100644
--- a/1.txt
+++ b/1.txt
@@ -5,3 +5,4
@@ helloworld
12222
hello
commit not
push now1
+commit not
push now2
commit 75a33de417f3fceb5b0af10f1f13460e6495f9d2
author: [email protected]>
date: fri oct 28
18:03:37
2016 +0800
commit not
push now1
diff --git a/1.txt b/1.txt
index e37ce3c..d77212f 100644
--- a/1.txt
+++ b/1.txt
@@ -4,3 +4,4
@@ helloworld
2112222
hello
+commit not
push now1
本文主要介紹**庫提交記錄及檔案修改記錄的檢視方式。 git命令使用(二)
上次寫的git命令,基本上能夠支援乙個專案的基本執行了,但是git不是就那幾個命令還有一些其他的命令,來看一下 建立乙個資料夾,想在這個資料夾下建立專案,就執行這個命令就行 git init 裡面有一些配置啥的選項,我是基本上不去配置這些,一路的回車操作,建立完成,資料夾下會出現package.js...
git命令的使用
最近換了一家公司,專案是使用git託管的,以前都是用的svn,所以在這裡寫一篇關git的使用心得和一些關於git的筆記 首先git與svn的區別 git是分布式的,svn不是 git把內容按元資料方式儲存,而svn是按檔案 git分支和svn的分支不同 git沒有乙個全域性的版本號,而svn有 gi...
git命令的使用
1.在所在專案的資料夾下 git init 2.自己要與origin master建立連線 下劃線為遠端倉庫鏈結 git remote add origin git github.com x nothing2.git 3.寫本次提交的注釋資訊 git commint m first commit 4...