Table of Contents


Helpful links:


Selecting an issue:


Development:


PR


Rebasing

NOTE: Because master changes so frequently, I will regularly rebase the collections-sprint branch against master to make our final merge process easier.  I will send a note out to slack before doing the rebase to avoid any conflicts for PR merging process.

What does that mean for your code?

What to do if your branch has diverged after rebase?


If after rebasing your local branch you get a message like

Your branch and 'origin/your-branch-name' have diverged,
and have 14 and 2 different commits each, respectively.

You can execute the following command to get them back in sync.

# change your-branch-name to your actual branch name
git push --force-with-lease origin your-branch-name



References: