Install wit and start using it in 5 minutes
git clone https://github.com/abhiaiyer91/wit.git cd wit npm install && npm run build && npm link
wit --help
mkdir my-project && cd my-project wit init
# Stage and commit wit add . wit commit -m "Initial commit" # Check status wit status wit log
wit switch -c feature # create and switch wit switch main # switch back wit branch -d feature # delete
wit undo # undo last operation wit undo --steps 3 # undo last 3 operations wit uncommit # undo commit, keep changes staged
export OPENAI_API_KEY=sk-your-key # or export ANTHROPIC_API_KEY=sk-ant-your-key
wit ai commit -a -x # AI writes commit message wit ai review # AI reviews staged changes wit search "where is auth handled?"
wit web # browser UI at localhost:3847 wit ui # terminal UI wit graph # ASCII commit graph
wit clone https://github.com/user/repo.git wit push origin main wit pull