Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Keeping your fork up to date

First you need to link your fork upstream

Code Block
languagebash
git remote add upstream git@bitbucket.org:openesb/openesb-components-3.git  

to verify it

Code Block
languagebash
git remote -v 

If you want to synchronize the master branch in your local repository and push it to your fork

Code Block
languagebash
git switch master
git pull upstream master
git push