Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Latest commit

 

History

History
27 lines (17 loc) · 671 Bytes

tips_and_tools.md

File metadata and controls

27 lines (17 loc) · 671 Bytes

Tips and Tools

Tools

Scripts

Apps

Pull vs Fetch

Pull merges changes automatically (but may fail). Fetch doesn't merge, but grabs the changes. That way you can run a git merge to merge the changes at a later point.

git pull is effectively:

  • git fetch
  • git merge