Giter Club home page Giter Club logo

binvcs's Introduction

binvcs

Simple Version Control System for binary files.

This is centralized VCS to control versions of assets and other binary files on project.

User decides whether should commit have rollback capability or not. If the commit has rollback capability, then it is called checkpoint. The key idea of this VCS is to hold whole copies (not just deltas) of files on every checkpoint and give user capability to decide if checkpoint should store files or not. It is designed so to keep size of file storage low.

Usage
`binvcs init`                                      - create new repository.
`binvcs add <list-of-files-and-directories>`       - add files and directories to stage.
`binvcs rm <list-of-files-and-directories>`        - remove files and directories from head and stage.
`binvcs commit [--checkpoint] <commentary>`        - commit files to head. If `checkpoint` flag is set then create a checkpoint for future rollback.
`binvcs diff <first-commit-id> <second-commit-id>` - display differences between commits.
`binvcs status`                                    - display current stage status.
`binvcs branches`                                  - display all available branches of repository.
`binvcs branch <branch-id>`                        - switch to other branch or create new branch.
`binvcs remove-branch <branch-id>`                 - remove branch from repository (HEAD can't be removed).
`binvcs rename-branch <old-id> <new-id`>           - change branch id from <old-id> to <new-id>.
`binvcs unstage`                                   - clear stage.
`binvcs help`                                      - show brief help on commands.
`binvcs checkpoints`                               - display all available checkpoints.
`binvcs extract <commit-id>`                       - extracts stored at the time of commit project files. Commit must have a checkpoint to enable extraction.
`binvcs remove-checkpoint <commit-id>`             - make commit unrollable (if you need to free space from old checkpoints).
`binvcs checkpoint <commentary>`                   - shortcut for `binvcs commit --checkpoint <commentary>`.
`binvcs recommit [--checkpoint] <commentary>`      - revert last commit and commit changes once again. It works only if there were no changes on filesystem.
Release history

No release yet

binvcs's People

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.