Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 678 Bytes

migration-v2023.12-to-v2024.01.md

File metadata and controls

21 lines (16 loc) · 678 Bytes

Update Guide

Quick steps to update your application with the latest changes from origin/main and handle any conflicts:

  1. Fetch the latest changes without switching branches:

    git fetch origin main
  2. Merge the fetched updates into your current branch:

    git merge origin/main
  3. Resolve any merge conflicts that arise during the merge, then commit the resolved files:

    git add .
    git commit -m "chore: resolved merge conflicts"

By following these steps, you can efficiently update your application to include the latest changes from the main branch while preserving your custom modifications.