git-init: add --object-format example (#4888)

beep
Axel Navarro 2020-10-30 09:28:18 -03:00 committed by GitHub
parent 9a326df505
commit 04591b14dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,10 @@
`git init`
- Initialize a repository using SHA256 for object hashes (requires git version 2.29+):
`git init --object-format={{sha256}}`
- Initialize a barebones repository, suitable for use as a remote over ssh:
`git init --bare`