You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before you cherry-pick commits into a branch be sure you are only doing this for commits which actually belong on that branch, and not every commit. Typically a branch is for stable code at or near a release, so it tends to be non-intrusive bug fixes only. If you aren't sure, check with other devs before committing to a branch.
git fetch && git rebase origin (while you're still on master)
git checkout RELENG_2_0
git cherry-pick <commit id>
git push
git checkout master