jist-vcs v1.0.2
Jist Version Control System
Jist is a simple version control system inspired by Git. It provides basic functionality for tracking changes in your project, creating branches, and managing your development workflow.
Installation
To install Jist globally, run:
npm install -g jist-vcsUsage
Here are some basic commands to get you started with Jist:
Initialize a new repository:
jist initAdd files to the staging area:
jist add <file or directory>Commit changes:
jist commit "Your commit message"View commit history:
jist logCreate a new branch:
jist branch <branch-name>Switch to a branch or commit:
jist checkout <branch-name or commit-hash>View all branches:
jist branch
For more information on each command, use the --help option:
jist --help
jist <command> --help.jistignore
You can create a .jistignore file in your repository root to specify files and directories that Jist should ignore. The syntax is similar to .gitignore.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License.