A simple local Version Control System (VCS). mvcs is under heavy development.
Node.js-^14.16.0
$ git clone https://github.com/raklaptudirm/mvcs.git$ cd mvcs
$ npm install --globalInitialize a new mvcs repository.
$ mvcs init
Initialized new repository at current/pathCommit changes to the repository.
$ mvcs commit
Enumerating changes: 1, done.
Constructing tree: 100% (8/8), done.
Writing tree, done.
Constructing commit, done.
Writing commit, done.
Updating master, done.
Writing objects: 100% (1/1), done.
[master defaf7e5] A commit.
1 files changed.If there are no changes,
$ mvcs commit
No changes to commit.
Change your cwc (current working commit) to .
$ mvcs checkout defaf7e5319a0b6fdff3e745024c7c7775c23a143dc5be522f5fea8b24c65d2eGet the last commit to your repository.
$ mvcs last
commit defaf7e5319a0b6fdff3e745024c7c7775c23a143dc5be522f5fea8b24c65d2e [master]
Author: Rak Laptudirm <[email protected]>
Date: Sun Feb 01 1998 00:00:00 GMT+0000 (GMT)
A commit.
-
committing -
init -
credentials -
checkout - Possibly get converted to
C(I am learningC) -
commit log -
commit name and description -
releases -
branch creation
