Developer Tools Cheatsheet

開発ツールチートシート

📝
Neovim
  • :w
    Save current file
  • :q
    Quit current window
  • dd
    Delete current line
  • yy
    Copy current line
  • p
    Paste after cursor
🌿
Git
  • git init
    Initialize a new repository
  • git add .
    Stage all changes
  • git commit -m "message"
    Commit staged changes
  • git push origin main
    Push commits to remote
  • git pull
    Update local repository
🐳
Docker
  • docker ps
    List running containers
  • docker images
    List all images
  • docker build -t name .
    Build an image from Dockerfile
  • docker run -d image
    Run container in background
  • docker-compose up
    Start services defined in docker-compose.yml