亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

?? ??? ??
Guides gitattributes giteveryday gitglossary gitignore gitmodules gitrevisions gittutorial gitworkflows Administration git archive git bundle git clean git filter-branch git fsck git gc git instaweb git reflog Basic Snapshotting git add git commit git diff git mv git reset git rm git status Branching and Merging git branch git checkout git log git merge git mergetool git stash git tag Debugging git bisect git blame git grep Email git am git format-patch git request-pull git send-email External Systems git fast-import git svn Getting and Creating Projects git clone git init Git git annotate git archimport git bisect-lk2009 git check-attr git check-mailmap git check-ref-format git checkout-index git cherry git citool git column git credential git credential-cache git credential-store git cvsexportcommit git cvsimport git cvsserver git diff-files git diff-tree git difftool git fast-export git fetch-pack git fmt-merge-msg git get-tar-commit-id git gui git http-backend git http-fetch git http-push git imap-send git index-pack git interpret-trailers git ls-remote git ls-tree git mailinfo git mailsplit git merge-file git merge-index git merge-one-file git merge-tree git mktag git mktree git name-rev git notes git p4 git pack-objects git pack-redundant git pack-refs git parse-remote git patch-id git prune git prune-packed git quiltimport git receive-pack git remote-ext git remote-fd git remote-testgit git repack git replace git rerere git send-pack git sh-i18n git sh-setup git shell git show-branch git show-index git stripspace git unpack-file git unpack-objects git upload-archive git upload-pack git var git verify-commit git verify-tag git whatchanged git worktree Inspection and Comparison git describe git shortlog git show Miscellaneous api credentials api index gitcli gitcore tutorial gitcredentials gitcvs migration gitdiffcore githooks gitk gitnamespaces gitremote helpers gitrepository layout gitsubmodules gittutorial 2 gitweb gitweb.conf pack format User Manual Patching git apply git cherry-pick git rebase git revert Plumbing Commands git cat-file git check-ignore git commit-tree git count-objects git diff-index git for-each-ref git hash-object git ls-files git merge-base git read-tree git rev-list git rev-parse git show-ref git symbolic-ref git update-index git update-ref git verify-pack git write-tree Server Admin git daemon git update-server-info Setup and Config git git config git help Sharing and Updating Projects git fetch git pull git push git remote git submodule
??

命名

git-hash-object  - 計(jì)算對(duì)象ID并可選擇從文件創(chuàng)建一個(gè)blob

概要

git hash-object [-t <type>] [-w] [--path=<file>|--no-filters] [--stdin [--literally]] [--] <file>…
git hash-object [-t <type>] [-w] --stdin-paths [--no-filters]

描述

使用指定文件的內(nèi)容(可以位于工作樹(shù)之外)計(jì)算具有指定類(lèi)型的對(duì)象的對(duì)象ID值,并且可以選擇將結(jié)果對(duì)象寫(xiě)入對(duì)象數(shù)據(jù)庫(kù)。將其對(duì)象ID報(bào)告給其標(biāo)準(zhǔn)輸出。這用于git cvsimport在不修改工作樹(shù)中的文件的情況下更新索引。當(dāng)<type>沒(méi)有被指定時(shí),它默認(rèn)為“blob”。

選項(xiàng)

-t <type>

指定類(lèi)型(默認(rèn)值:“blob”)。

-w

實(shí)際上將對(duì)象寫(xiě)入對(duì)象數(shù)據(jù)庫(kù)。

--stdin

從標(biāo)準(zhǔn)輸入而不是從文件中讀取對(duì)象。

--stdin-paths

從標(biāo)準(zhǔn)輸入讀取文件名,每行一個(gè),而不是從命令行讀取。

--path

哈希對(duì)象,因?yàn)樗挥诮o定的路徑。文件的位置并不直接影響散列值,但路徑用于確定在將對(duì)象放置到對(duì)象數(shù)據(jù)庫(kù)之前應(yīng)該將什么Git過(guò)濾器應(yīng)用到該對(duì)象,并且作為應(yīng)用過(guò)濾器的結(jié)果,實(shí)際的blob放置進(jìn)入對(duì)象數(shù)據(jù)庫(kù)可能與給定文件不同。此選項(xiàng)主要用于散列位于工作目錄之外的臨時(shí)文件或從stdin讀取的文件。

--no-filters

按原樣散列內(nèi)容,忽略屬性機(jī)制選擇的任何輸入過(guò)濾器,包括行結(jié)束轉(zhuǎn)換。如果文件是從標(biāo)準(zhǔn)輸入中讀取的,那么這總是隱含的,除非--path給出選項(xiàng)。

--literally

允許--stdin將任何垃圾散列到松散對(duì)象中,否則可能不會(huì)通過(guò)標(biāo)準(zhǔn)對(duì)象分析或git-fsck檢查。有助于壓力測(cè)試Git本身或復(fù)制在野外遇到的腐敗或假物體的特征。

?? ??: ?? ??: