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.
To install Jist globally, run:
npm install -g jist-vcs
Here are some basic commands to get you started with Jist:
-
Initialize a new repository:
jist init
-
Add files to the staging area:
jist add <file or directory>
-
Commit changes:
jist commit "Your commit message"
-
View commit history:
jist log
-
Create 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
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
.
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License.