Adding some functions to make it easier to work with blobs:
get_blob_path(blob_id) - returns the relative filesystem path for the blob
hash_blob(binary_buffer) - returns the sha256 hash (as hex) and sigil-link (aka. blob id)
I am implementing these functions in src/blobs.rs since they do not require an RPC calls.
Adding some functions to make it easier to work with blobs:
- [x] `get_blob_path(blob_id)` - returns the relative filesystem path for the blob
- [x] `hash_blob(binary_buffer)` - returns the sha256 hash (as hex) and sigil-link (aka. blob id)
I am implementing these functions in `src/blobs.rs` since they do not require an RPC calls.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Adding some functions to make it easier to work with blobs:
get_blob_path(blob_id)- returns the relative filesystem path for the blobhash_blob(binary_buffer)- returns the sha256 hash (as hex) and sigil-link (aka. blob id)I am implementing these functions in
src/blobs.rssince they do not require an RPC calls.