Getting Started with krayzoflow
A comprehensive guide to setting up and using krayzoflow for your git workflows
Getting Started with krayzoflow
Welcome to krayzoflow! This guide will help you get up and running in minutes.
What is krayzoflow?
krayzoflow is a powerful git workflow manager designed to streamline your development process. Whether you're working on a solo project or collaborating with a team, krayzoflow makes git operations intuitive and efficient.
Installation
First, download krayzoflow for your platform:
macOS
brew install krayzoflow
Windows
choco install krayzoflow
Linux
snap install krayzoflow
Your First Repository
Opening a repository is simple. Navigate to your project directory and run:
krayzoflow init
This will initialize krayzoflow in your current git repository and create a configuration file.
Basic Commands
Here are the essential commands you'll use every day:
Check Status
krayzoflow status
View the current state of your repository, including branches, uncommitted changes, and more.
Create a Branch
krayzoflow branch feature/new-feature
Create and switch to a new branch with proper naming conventions.
Commit Changes
krayzoflow commit -m "Add new feature"
Stage and commit your changes with a single command.
Configuration
krayzoflow can be customized to match your workflow. Edit the .krayzoflow.json file in your repository root:
{
"branchPrefix": "feature/",
"commitTemplate": "conventional",
"autoStash": true
}
Next Steps
Now that you've got the basics down, explore more advanced features:
- Learn about branch strategies in our advanced workflows guide
- Set up team collaboration with shared configurations
- Integrate krayzoflow with your CI/CD pipeline
Getting Help
If you run into any issues:
- Check the documentation at
/krayzoflow/support - Search existing issues on GitHub
- Join our community Discord server
Happy coding!