知乎專欄 | 多維度架構 | 微信號 netkiller-ebook | QQ群:128659835 請註明“讀者” |
使用git命令計算檔案的 sha-1 值
neo@MacBook-Pro ~ % echo 'test content' | git hash-object --stdin d670460b4b4aece5915caf5c68d12f560a9fe3e4
$ echo 'hello world!!!'> newfile $ git-add newfile
$ git-status newfile # On branch master # # Initial commit # # Changes to be committed: # (use "git rm --cached <file>..." to unstage) # # new file: newfile #
$ git-commit -m 'add a new file' newfile Created initial commit f6fda79: add a new file 1 files changed, 1 insertions(+), 0 deletions(-) create mode 100644 newfile
$ git-show commit f6fda79f2f550ea3b2c1b483371ed5d12499ac35 Author: chen <openunix@163.com> Date: Sat Nov 1 08:50:45 2008 -0400 add a new file diff --git a/newfile b/newfile new file mode 100644 index 0000000..b659464 --- /dev/null +++ b/newfile @@ -0,0 +1 @@ +hello world!!!