Loading...
Loading...
Git conventions and workflow guidelines using Conventional Commits, branching strategies, and best practices for version control
npx skill4agent add mindrally/skills git-workflow<type>[optional scope]: <description>
[optional body]
[optional footer(s)]featfixdocsstylerefactorperftestbuildcichorerevertfeat(auth): add OAuth2 authentication support
Implement OAuth2 flow for Google and GitHub providers.
This allows users to sign in with their existing accounts.
Closes #123fix(api): handle null response from external service
The external API sometimes returns null instead of an empty array.
Added null check to prevent TypeError in downstream processing.
Fixes #456feature/feature/user-authenticationbugfix/bugfix/login-redirect-loophotfix/hotfix/security-patchrelease/release/v2.1.0docs/docs/api-referencerefactor/refactor/database-layergit checkout main
git pull origin main
git checkout -b feature/new-featuregit fetch origin
git rebase origin/maingit branch -d feature/new-feature
git push origin --delete feature/new-featuregit config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.lg "log --oneline --graph --decorate"git config --global pull.rebase true
git config --global fetch.prune true
git config --global diff.colorMoved zebra.gitignorefeatfixBREAKING CHANGE