Friday, November 28, 2025

Sync fork with upstream

How to sync your fork with upstream

Here’s a safe and common way to update your fork:

1. Add the upstream remote (if not already added)

git remote add upstream https://github.com/activepieces/activepieces.git

2. Fetch the latest changes from upstream

git fetch upstream

3. Merge upstream/main into your local main

git checkout main
git merge upstream/main

Or, if you prefer rebasing:

git rebase upstream/main

4. Push the updated main to your fork

git push origin main

No comments:

Post a Comment

How GIT STASH and POP works?

Can we run multiple GIT STASH ?  Yes. You can have multiple stashes. Every time you run git stash , Git creates a new stash entry and stor...