A simple Visual Studio Code extension that allows you to merge the homologation branch into your current branch with a single click — no terminal required!
✨ Features
🔁 Merge the homologation branch into your current working branch
🖱️ Accessible via a button in the bottom-right corner of the VSCode interface
✅ Clear visual feedback on success or failure
⚡ Lightweight, intuitive, and easy to use
🛠️ How to Use
Make sure you're working inside a Git repository
Ensure you're on the branch you want to update (e.g., feature/my-task)
Look for the “Merge Homologation” button in the bottom-right corner of the VSCode window
Click the button — that’s it!
Your current branch will be merged with the latest code from homologation
⚠️ Important: Your repository must have a branch named homologation.
📦 Requirements
Git must be installed and available in your system path
A branch named homologation must exist in your repository
You must have permission to pull and merge from homologation
🧪 What Happens Internally
# The extension automatically runs the equivalent of:
git fetch origin
git merge origin/homologation