Skip to main content

Git Pull & Merge from Forked Repository

Checkout

From your project repository, check out a new branch and test the changes.

git fetch -u https://git.introvesia.com/ahmjw90/landing-page main:ahmjw90-main
git checkout ahmjw90-main

Merge

Merge the changes and update on Gitea.

git checkout main
git merge --no-ff ahmjw90-main
git push origin main