Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS DSA TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI R GO KOTLIN SASS VUE GEN AI SCIPY CYBERSECURITY DATA SCIENCE INTRO TO PROGRAMMING BASH RUST

Git Best Practices


Summary of Git Best Practices

  • Commit Often
  • Write Clear Commit Messages
  • Use Branches
  • Pull Before You Push
  • Review Changes Before Committing
  • Keep Repositories Small
  • Use .gitignore
  • Tag Releases

Commit Often

Make small, frequent commits to capture your progress.

This makes it easier to track changes and find bugs.

Example

git add .
git commit -m "Add user authentication logic"

Write Clear Commit Messages

Use descriptive messages that explain why a change was made, not just what changed.

Good commit messages help you and your team understand the history of the project.

  • Be specific: Say what and why, not just "Update" or "Fix".
  • Use the imperative mood: For example, "Add login validation" instead of "Added login validation".

Example

git commit -m "Fix bug in user login validation"


Use Branches

Create branches for features, fixes, and experiments to keep your main branch stable.

This way, you can work on new ideas without affecting the main codebase.

  • Why? Branches let you test and develop independently, and make collaboration safer.
  • Name branches clearly: For example, feature/login-form or bugfix/user-auth.

Example

git checkout -b feature/login-form

Pull Before You Push

Always git pull before pushing.

This updates your local branch with changes from others, helps you avoid conflicts, and ensures your push will succeed.

Why? If someone else has pushed changes since your last pull, your push may be rejected or cause conflicts.

Pulling first lets you fix any issues locally.

Example

git pull origin main
git push origin main

Review Changes Before Committing

Use git status and git diff to review your changes before you commit.

This helps you catch mistakes early.

Example

git status
git diff

Keep Repositories Small

Avoid adding large files or unnecessary dependencies.

This keeps your repository fast and easy to clone.

  • Tip: For large files (like videos or datasets), use Git LFS (Large File Storage) instead of adding them directly to your repo.

Use .gitignore

Exclude files that shouldn't be tracked (like build artifacts, log files, or secrets) by adding them to a .gitignore file.

Note: .gitignore only prevents new files from being tracked.

Files already tracked by Git will remain in the repository until you remove them with git rm --cached <file>.

Example: .gitignore

# .gitignore
node_modules/
*.log
.env

Tag Releases

Use tags to mark release points (like v1.0) so you can easily find and reference important versions.

This helps you keep track of your project's history and make it easier to roll back to previous versions if needed.

Example

git tag v1.0
git push origin v1.0

Note: Good Git habits make it easier for your team (and your future self) to understand and build on your work.




×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.