Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 591 Bytes

git.md

File metadata and controls

50 lines (31 loc) · 591 Bytes

Git configuration

The purpose of the git ↗ is handling version control.

Contents

Setup

  • Create git repo

    git init
  • Add git ignore file:

    # .gitignore
    
    node_modules/
    
      # Next ignore patterns
    .next/
    .build/
    .coverage/
    
    # Custom ignore patterns
    ...
  • Add git attributes file:

    # .gitattributes
    
    **/pnpm-lock.yaml -diff

License

MIT © Sergey Muravjev


⬅ Back