Loading...
Loading...
Git workflow and conventions — branching, commit messages, and PR creation.
npx skill4agent add onekeyhq/app-monorepo 1k-git-workflowxxxonekeymastermainxxfeat/descriptionfeature/descriptionfix/descriptionrefactor/descriptionfeat:fix:refactor:perf:optimize:chore:docs:type: short descriptionfix: resolve login bug OK-12345feat: add dark mode supportfix: resolve authentication timeout issuerefactor: simplify payment processing logicgit checkout x
git pull origin x
git checkout -b feat/my-new-feature/commit/commityarn lint:stagedyarn tsc:staged# Stage your changes
git add .
# Run pre-commit checks (MANDATORY)
yarn lint:staged
yarn tsc:staged
# If checks pass, commit
git commit -m "feat: add user profile page"/commitgit push -u origin feat/my-new-feature
# Then create PR via GitHub UI or gh CLIgit fetch origin
git rebase origin/x