claude_code_tips

GitHub Release GitHub Tag GitHub repo file or directory count GitHub License

Claude Code tips

Project Overview

This is a documentation repository containing Claude Code tips, best practices, and resources. It’s a collection of knowledge about MCP (Model Context Protocol) tools, Git workflows, and essential commands for effective Claude Code usage.

Repository Structure

Key Resources Referenced

Context Engineering Sources

MCP Tools

Best Practices Source

Git Workflow Strategy

This repository follows a checkpoint-based Git workflow as documented in GIT.md:

  1. Create feature branches: git checkout -b [new_branch]
  2. Regular checkpoints: git add . && git commit -m '[status]'
  3. Rollback capability: git reset --hard [commit_hash]
  4. Squash before PR: git rebase -i [start_commit]
  5. Force push if needed: git push origin [branch] -f