@deron
To sync with the original repository in Bitbucket, you can follow these steps:
1
|
git remote add upstream <URL of original repository> |
1
|
git fetch upstream |
1
|
git merge upstream/master |
This will merge the changes from the original repository's master branch into your local master branch.
1
|
git push origin master |
By following these steps, you will be able to sync with the original repository in Bitbucket and keep your local repository up to date with any changes made by other contributors.