snowfs icon indicating copy to clipboard operation
snowfs copied to clipboard

SnowFS - a fast, scalable version control file storage for graphic files :art:

Results 28 snowfs issues
Sort by recently updated
recently updated
newest added

**Describe the bug** Upon cloning the repo and running tests (with no alteration), I get an error in : `TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string or...

## Description Adds info on whether a file has been added/modified in `snow log` via a `--changed-information` flag The output is in JSON, and a `status` field is added to...

See: https://github.com/snowtrack/snowfs/pull/255/checks?check_run_id=5491245213 https://github.com/snowtrack/snowfs/security/code-scanning/1?query=ref%3Arefs%2Fpull%2F255%2Fmerge+ref%3Arefs%2Fpull%2F255%2Fhead ```typescript export function jsonCompliant(s : string) : string { return s .replace(/\\n/g, '\\n') .replace(/\\'/g, "\\'") .replace(/\\"/g, '\\"') .replace(/\\&/g, '\\&') .replace(/\\r/g, '\\r') .replace(/\\t/g, '\\t') .replace(/\\b/g, '\\b') .replace(/\\f/g, '\\f');...

**Describe the bug** After compiling snow, if I try to run `snow init` (while in a newly created directory), node spits out ```bash node:events:342 throw er; // Unhandled 'error' event...

bug

## Limitation Currently `snow log --output=json` returns the full snapshot of each commit. A typical view for plugins working with SnowFS will be to show the files modified for each...

enhancement
good first issue

With the latest changes #183 we should rethink the design of commits. ## Notes What we currently have designed as **commit messages** should be renamed as **commit title**. What we...

enhancement

SnowFS requires the functionality to attach user-written notes to commits, commit-items with a specific hash, or commit-items attached to a specific commit.

enhancement

This issue is a proposal for modifications of the CLI API. The focus is a balance between easy-to-use and already established commands in Git. # snow-branch Create, or delete branches....

documentation
enhancement
question

After files got added to an index, `getStatus` doesn't regard them as it still returns them as "new". Idea 1: Optionally pass an Index to getStatus to filter out these...

invalid

Add a Github job to analyse the test suite and fail upon an occurence of `test.only`. When running tests on the local machine it is productive to only run the...

enhancement